From 1c59d8d7797db364ed7b94c4db955c4ca8eb7725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edi=20Modri=C4=87?= Date: Thu, 14 Dec 2017 10:24:20 +0100 Subject: [PATCH] Disable yoda style CS fixer --- .php_cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs b/.php_cs index d010ce7..dde0548 100644 --- a/.php_cs +++ b/.php_cs @@ -20,6 +20,7 @@ return PhpCsFixer\Config::create() 'semicolon_after_instruction' => true, 'strict_comparison' => true, 'strict_param' => true, + 'yoda_style' => false, ]) ->setFinder( PhpCsFixer\Finder::create()