mirror of
https://github.com/elyby/php-code-style.git
synced 2024-11-19 19:53:07 +05:30
10 lines
229 B
Plaintext
10 lines
229 B
Plaintext
|
<?php
|
||
|
|
||
|
$finder = PhpCsFixer\Finder::create()
|
||
|
->in(__DIR__);
|
||
|
|
||
|
return \Ely\CS\Config::create([
|
||
|
// Disable it for const, 'cause ^7.0 compatibility
|
||
|
'visibility_required' => ['property', 'method'],
|
||
|
])->setFinder($finder);
|