Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.06 KB

no_spaces_after_function_name.rst

File metadata and controls

45 lines (35 loc) · 1.06 KB

Rule 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.

Examples

Example #1

--- Original
+++ New
 <?php
-require ('sample.php');
-echo (test (3));
-exit  (1);
-$func ();
+require('sample.php');
+echo(test(3));
+exit(1);
+$func();

Rule sets

The rule is part of the following rule sets:

Source class

PhpCsFixer\Fixer\FunctionNotation\NoSpacesAfterFunctionNameFixer