mirror of
https://github.com/elyby/league-oauth2-ely.git
synced 2024-12-22 13:29:45 +05:30
9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
|
<?php
|
||
|
$finder = \PhpCsFixer\Finder::create()
|
||
|
->in(__DIR__);
|
||
|
|
||
|
return \Ely\CS\Config::create([
|
||
|
'visibility_required' => ['property', 'method'],
|
||
|
'ternary_to_null_coalescing' => false,
|
||
|
])->setFinder($finder);
|