file-end-linefixable
Check that a PHP file does not end with a blank line
Examples
- Examples of correct code for this rule using default options
PHP Code without empty lines at the end
php
<?php
function foo() {
echo 'bar';
}
- Examples of incorrect code for this rule using default options
PHP Code with empty lines at the end
php
<?php
function foo() {
echo 'bar';
}