From d1a39d1aa89c8d1f01d40c11fe63e1692ce25691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 25 Dec 2020 23:40:43 +0100 Subject: [PATCH] Fix: Use on_multiline instead of deprecated ensure_fully_multiline option for method_argument_space fixer --- .php_cs.dist | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.php_cs.dist b/.php_cs.dist index a5f20daa38c..1c89105aaf5 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -90,7 +90,9 @@ return PhpCsFixer\Config::create() 'lowercase_static_reference' => true, 'magic_constant_casing' => true, 'magic_method_casing' => true, - 'method_argument_space' => ['ensure_fully_multiline' => true], + 'method_argument_space' => [ + 'on_multiline' => 'ensure_fully_multiline', + ], 'modernize_types_casting' => true, 'multiline_comment_opening_closing' => true, 'multiline_whitespace_before_semicolons' => true,