Rule include
¶
Include/Require and file path should be divided with a single space. File path should not be placed within parentheses.
Examples¶
Example #1¶
--- Original
+++ New
<?php
-require ("sample1.php");
-require_once "sample2.php";
-include "sample3.php";
-include_once("sample4.php");
+require "sample1.php";
+require_once "sample2.php";
+include "sample3.php";
+include_once "sample4.php";
Rule sets¶
The rule is part of the following rule sets:
References¶
Fixer class: PhpCsFixer\Fixer\ControlStructure\IncludeFixer
Test class: PhpCsFixer\Tests\Fixer\ControlStructure\IncludeFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.