From e06dbd37217574de4e6ee49a276baa59c90b40f9 Mon Sep 17 00:00:00 2001 From: useahawk Date: Fri, 8 Apr 2022 17:30:09 +0200 Subject: [PATCH] Update .php_cs_config Fix for Issue #277 error when running Crud command from console --- fixer/.php_cs_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixer/.php_cs_config b/fixer/.php_cs_config index 16f9d90fe..617289cca 100644 --- a/fixer/.php_cs_config +++ b/fixer/.php_cs_config @@ -121,6 +121,6 @@ $rules = [ 'method_chaining_indentation' => true, ]; -return PhpCsFixer\Config::create() +return (new PhpCsFixer\Config) ->setRules($rules) ->setLineEnding("\n");