summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.php_cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/.php_cs b/.php_cs
index 73f0838..1364d57 100644
--- a/.php_cs
+++ b/.php_cs
@@ -19,6 +19,11 @@ return PhpCsFixer\Config::create()
'no_useless_else' => true,
'phpdoc_add_missing_param_annotation' => true,
'phpdoc_order' => true,
+ 'yoda_style' => array(
+ 'equal' => false,
+ 'identical' => false,
+ 'less_and_greater' => false,
+ )
))
->setFinder($finder)
;