mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
14 lines
312 B
Plaintext
14 lines
312 B
Plaintext
|
<?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);
|