Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

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