From d55351fecf4c1d1c652541d3c167af118a00d179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 3 Jul 2020 09:45:39 +0200 Subject: [PATCH] Enhancement: Enable magic_method_casing fixer --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index c63557243c3..fa1e3a2c923 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -89,6 +89,7 @@ return PhpCsFixer\Config::create() 'lowercase_keywords' => true, 'lowercase_static_reference' => true, 'magic_constant_casing' => true, + 'magic_method_casing' => true, 'method_argument_space' => ['ensure_fully_multiline' => true], 'modernize_types_casting' => true, 'multiline_comment_opening_closing' => true,