Skip to content

Commit

Permalink
Disabled yoda_style conditionals in .php_cs.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed Jan 31, 2018
1 parent b425be6 commit ee06ed8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ return PhpCsFixer\Config::create()
'not_operator_with_successor_space' => true,
'phpdoc_order' => true,
'semicolon_after_instruction' => true,
'trailing_comma_in_multiline_array' => false
'trailing_comma_in_multiline_array' => false,
'yoda_style' => false
])->setFinder($finder);

0 comments on commit ee06ed8

Please sign in to comment.