📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 02:51:22
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
Formatting
✏️
Editing: SpaceBeforeCastStandard.xml
<documentation title="Space Before Cast"> <standard> <![CDATA[ There should be exactly one space before a cast operator. ]]> </standard> <code_comparison> <code title="Valid: Single space before a cast operator."> <![CDATA[ $integer =<em> </em>(int) $string; $c = $a .<em> </em>(string) $b; ]]> </code> <code title="Invalid: No space or multiple spaces before a cast operator."> <![CDATA[ $integer =<em></em>(int) $string; $c = $a .<em> </em>(string) $b; ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel