📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 02:47:20
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
CodeAnalysis
✏️
Editing: EmptyPHPStatementStandard.xml
<documentation title="Empty PHP Statement"> <standard> <![CDATA[ Empty PHP tags are not allowed. ]]> </standard> <code_comparison> <code title="Valid: There is at least one statement inside the PHP tag pair."> <![CDATA[ <?php <em>echo 'Hello World';</em> ?> <?= <em>'Hello World';</em> ?> ]]> </code> <code title="Invalid: There is no statement inside the PHP tag pair."> <![CDATA[ <?php <em>;</em> ?> <?= <em></em> ?> ]]> </code> </code_comparison> <standard> <![CDATA[ Superfluous semicolons are not allowed. ]]> </standard> <code_comparison> <code title="Valid: There is no superfluous semicolon after a PHP statement."> <![CDATA[ function_call()<em>;</em> if (true) { echo 'Hello World'<em>;</em> } ]]> </code> <code title="Invalid: There are one or more superfluous semicolons after a PHP statement."> <![CDATA[ function_call()<em>;;;</em> if (true) { echo 'Hello World'; }<em>;</em> ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel