
no_spaces_after_function_name
¶When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis.
--- Original
+++ New
<?php
-require ('sample.php');
-echo (test (3));
-exit (1);
-$func ();
+require('sample.php');
+echo(test(3));
+exit(1);
+$func();
The rule is part of the following rule sets:
Using the @PER rule set will enable the no_spaces_after_function_name
rule.
Using the @PSR2 rule set will enable the no_spaces_after_function_name
rule.
Using the @PSR12 rule set will enable the no_spaces_after_function_name
rule.
Using the @PhpCsFixer rule set will enable the no_spaces_after_function_name
rule.
Using the @Symfony rule set will enable the no_spaces_after_function_name
rule.