diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 455d855..f02e527 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -9,7 +9,10 @@ 'array_syntax' => ['syntax' => 'short'], 'binary_operator_spaces' => [ 'default' => 'single_space', - 'operators' => ['=>' => null], + 'operators' => [ + '=' => 'align', + '=>' => 'align', + ], ], 'blank_line_after_namespace' => true, 'blank_line_after_opening_tag' => true, @@ -71,6 +74,7 @@ 'extra', 'throw', 'use', + 'use_trait', ], ], 'no_leading_import_slash' => true,