From 7bcfeab7e0a40f261b22aedf55685f5a37e88a50 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Sun, 24 Feb 2019 02:45:44 +0300 Subject: [PATCH] Disable php_unit_expectation fixer --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index e30aa56..9e2f4b5 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -5,4 +5,5 @@ $finder = \PhpCsFixer\Finder::create() return \Ely\CS\Config::create([ 'visibility_required' => ['property', 'method'], 'ternary_to_null_coalescing' => false, + 'php_unit_expectation' => false, ])->setFinder($finder);