18 lines
381 B
PHP
18 lines
381 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()->in(__DIR__);
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
$config->setCacheFile(__DIR__ . '/php-cs-fixer.cache');
|
|
$config->setFinder($finder);
|
|
$config->setIndent(" ");
|
|
$config->setLineEnding("\n");
|
|
$config->setRules([
|
|
'@PSR12' => true,
|
|
'array_syntax' => [
|
|
'syntax' => 'short',
|
|
],
|
|
]);
|
|
|
|
return $config;
|