humhub/.php_cs.dist

14 lines
312 B
Plaintext
Raw Normal View History

<?php
$finder = PhpCsFixer\Finder::create()
->exclude('messages')
->in(__DIR__ . '/protected/humhub');
return PhpCsFixer\Config::create()
->setRules([
'array_syntax' => ['syntax' => 'short'],
'elseif' => true,
'lowercase_constants' => true,
])
->setFinder($finder);