mirror of
https://github.com/elyby/php-code-style.git
synced 2024-11-06 08:11:08 +05:30
10 lines
229 B
PHP
10 lines
229 B
PHP
<?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);
|