league-oauth2-ely/.php_cs.dist

10 lines
254 B
Plaintext
Raw Normal View History

2018-08-20 15:39:57 +03:00
<?php
$finder = \PhpCsFixer\Finder::create()
->in(__DIR__);
return \Ely\CS\Config::create([
'visibility_required' => ['property', 'method'],
'ternary_to_null_coalescing' => false,
2019-02-24 02:45:44 +03:00
'php_unit_expectation' => false,
2018-08-20 15:39:57 +03:00
])->setFinder($finder);