diff --git a/.php_cs b/.php_cs index d324bd3..feca359 100644 --- a/.php_cs +++ b/.php_cs @@ -21,8 +21,7 @@ return PhpCsFixer\Config::create() 'commentType' => 'PHPDoc', ], 'binary_operator_spaces' => [ - 'align_double_arrow' => null, - 'align_equals' => null, + 'default' => null, ], 'concat_space' => ['spacing' => 'one'], 'array_syntax' => ['syntax' => 'short'], @@ -42,6 +41,8 @@ return PhpCsFixer\Config::create() 'strict_comparison' => true, 'strict_param' => true, 'no_multiline_whitespace_before_semicolons' => true, + 'semicolon_after_instruction' => false, + 'yoda_style' => false, )) ->setFinder( PhpCsFixer\Finder::create()