Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 840 Bytes

no_closing_tag.rst

File metadata and controls

40 lines (29 loc) · 840 Bytes

Rule no_closing_tag

The closing ?> tag MUST be omitted from files containing only PHP.

Examples

Example #1

--- Original
+++ New
 <?php
 class Sample
 {
-}
-?>
+}
\ No newline at end of file

Rule sets

The rule is part of the following rule sets:

@PSR12

Using the @PSR12 rule set will enable the no_closing_tag rule.

@PSR2

Using the @PSR2 rule set will enable the no_closing_tag rule.

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the no_closing_tag rule.

@Symfony

Using the @Symfony rule set will enable the no_closing_tag rule.