Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 650 Bytes

linebreak_after_opening_tag.rst

File metadata and controls

31 lines (22 loc) · 650 Bytes

Rule linebreak_after_opening_tag

Ensure there is no code on the same line as the PHP open tag.

Examples

Example #1

--- Original
+++ New
-<?php $a = 1;
+<?php
+$a = 1;
 $b = 3;

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the linebreak_after_opening_tag rule.
@Symfony
Using the @Symfony rule set will enable the linebreak_after_opening_tag rule.