📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 01:32:12
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
PHP
✏️
Editing: LowerCaseConstantStandard.xml
<documentation title="Lowercase PHP Constants"> <standard> <![CDATA[ The <em>true</em>, <em>false</em> and <em>null</em> constants must always be lowercase. ]]> </standard> <code_comparison> <code title="Valid: Lowercase constants."> <![CDATA[ if ($var === <em>false</em> || $var === <em>null</em>) { $var = <em>true</em>; } ]]> </code> <code title="Invalid: Uppercase constants."> <![CDATA[ if ($var === <em>FALSE</em> || $var === <em>NULL</em>) { $var = <em>TRUE</em>; } ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel