📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 01:32:08
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
Formatting
✏️
Editing: SpaceAfterNotStandard.xml
<documentation title="Space After NOT operator"> <standard> <![CDATA[ Exactly one space is allowed after the NOT operator. ]]> </standard> <code_comparison> <code title="Valid: A NOT operator followed by one space."> <![CDATA[ if (!<em> </em>$someVar || !<em> </em>$x instanceOf stdClass) {}; ]]> </code> <code title="Invalid: A NOT operator not followed by whitespace or followed by too much whitespace."> <![CDATA[ if (!<em></em>$someVar || !<em></em>$x instanceOf stdClass) {}; if (!<em> </em>$someVar || !<em> </em>$x instanceOf stdClass) {}; ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel