
no_blank_lines_after_class_opening
¶There should be no empty lines after class opening brace.
--- Original
+++ New
<?php
final class Sample
{
-
protected function foo()
{
}
}
The rule is part of the following rule sets:
Using the @PER rule set will enable the no_blank_lines_after_class_opening
rule.
Using the @PSR12 rule set will enable the no_blank_lines_after_class_opening
rule.
Using the @PhpCsFixer rule set will enable the no_blank_lines_after_class_opening
rule.
Using the @Symfony rule set will enable the no_blank_lines_after_class_opening
rule.