Skip to content

Commit

Permalink
Update yoda style rule
Browse files Browse the repository at this point in the history
  • Loading branch information
rancoud committed Mar 17, 2021
1 parent a2e6764 commit 98b3d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ return PhpCsFixer\Config::create()
'strict_param' => true,
'concat_space' => ['spacing' => 'one'],
'trailing_comma_in_multiline_array' => false,
'yoda_style' => null,
'yoda_style' => ['equal' => false, 'identical' => false, 'less_and_greater' => false],
'single_line_throw' => false,
'no_superfluous_phpdoc_tags' => false
])
->setFinder($finder)
->setCacheFile(__DIR__.'/.php_cs.cache');
->setCacheFile(__DIR__.'/.php_cs.cache');

0 comments on commit 98b3d36

Please sign in to comment.