league-oauth2-ely/.php_cs.dist

10 lines
254 B
Plaintext
Raw Permalink Normal View History

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