From a69795138352a0a8839aec0f35d62c446188088a Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Fri, 12 Jul 2024 14:34:29 +0200 Subject: [PATCH] style: ensure indentation with method chaining Rule: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/930dc93a1b90eb991d13e2766a340aa6922d4a2c/doc/rules/whitespace/method_chaining_indentation.rst Signed-off-by: Daniel Kesselberg --- src/Config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Config.php b/src/Config.php index d6132b8..a9e8da5 100644 --- a/src/Config.php +++ b/src/Config.php @@ -41,6 +41,7 @@ public function getRules() : array { 'method_argument_space' => [ 'on_multiline' => 'ignore', ], + 'method_chaining_indentation' => true, 'no_closing_tag' => true, 'no_leading_import_slash' => true, 'no_spaces_after_function_name' => true,