From 0bd9725c2796288824302213ae3574e2eb5fec38 Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Tue, 27 Jan 2015 21:08:40 +0100 Subject: [PATCH 1/2] .php_cs - add join_function rule --- .php_cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs b/.php_cs index 38a16ff..fdcf031 100644 --- a/.php_cs +++ b/.php_cs @@ -38,6 +38,7 @@ $config->fixers( 'function_call_space', 'function_declaration', 'indentation', + 'join_function', 'line_after_namespace', 'linefeed', 'lowercase_keywords', From 0b398f0599dce806c42feb1f2faaeefd627bc2e7 Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Tue, 27 Jan 2015 21:28:57 +0100 Subject: [PATCH 2/2] .php_cs - add object_operator rule --- .php_cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs b/.php_cs index fdcf031..a1810c1 100644 --- a/.php_cs +++ b/.php_cs @@ -45,6 +45,7 @@ $config->fixers( 'parenthesis', 'multiple_use', 'method_argument_space', + 'object_operator', 'php_closing_tag', 'psr0', 'remove_lines_between_uses',