📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 02:53:44
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
PHP
✏️
Editing: NoSilencedErrorsStandard.xml
<documentation title="Silenced Errors"> <standard> <![CDATA[ Suppressing Errors is not allowed. ]]> </standard> <code_comparison> <code title="Valid: isset() is used to verify that a variable exists before trying to use it."> <![CDATA[ if (<em>isset($foo)</em> && $foo) { echo "Hello\n"; } ]]> </code> <code title="Invalid: Errors are suppressed."> <![CDATA[ if (<em>@</em>$foo) { echo "Hello\n"; } ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel