From bd4ef99180478c9ff2bbe08519a2e318cbe652de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Rumi=C5=84ski?= Date: Sat, 6 Sep 2014 11:30:11 +0200 Subject: [PATCH] .php_cs no need for ordered_use --- .php_cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php_cs b/.php_cs index b748bc4..1265160 100644 --- a/.php_cs +++ b/.php_cs @@ -24,7 +24,7 @@ $fixers = array_merge( $fixers[FixerInterface::PSR1_LEVEL], $fixers[FixerInterface::PSR2_LEVEL], $fixers[FixerInterface::ALL_LEVEL], - array('concat_with_spaces', 'ordered_use', 'strict') + array('concat_with_spaces', 'strict') ); $config = new Config();