mirror of
https://github.com/halaxa/json-machine.git
synced 2025-01-17 21:18:23 +01:00
18 lines
342 B
PHP
18 lines
342 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('ext')
|
|
;
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
return $config->setRules([
|
|
'@Symfony' => true,
|
|
'yoda_style' => false,
|
|
'single_line_throw' => false,
|
|
'unary_operator_spaces' => false,
|
|
'visibility_required' => false,
|
|
])
|
|
->setFinder($finder)
|
|
;
|