Skip to content
On this page

file-closing-tagfixable

Ensure that PHP files do not end with a closing tag

Examples

  • Examples of correct code for this rule using default options

File is not ending with a closing tag

php
<?php

echo "testing";
  • Examples of incorrect code for this rule using default options

File is ending with a closing tag

php
<?php

echo "testing";

?>

Released under the MIT License.