Rule no_blank_lines_after_class_opening
¶
There should be no empty lines after class opening brace.
Examples¶
Example #1¶
--- Original
+++ New
<?php
final class Sample
{
-
protected function foo()
{
}
}
Rule sets¶
The rule is part of the following rule sets:
References¶
Fixer class: PhpCsFixer\Fixer\ClassNotation\NoBlankLinesAfterClassOpeningFixer
Test class: PhpCsFixer\Tests\Fixer\ClassNotation\NoBlankLinesAfterClassOpeningFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.