📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 01:28:24
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
CodeAnalysis
✏️
Editing: UnusedFunctionParameterStandard.xml
<documentation title="Unused function parameters"> <standard> <![CDATA[ All parameters in a functions signature should be used within the function. ]]> </standard> <code_comparison> <code title="Valid: All the parameters are used."> <![CDATA[ function addThree($a, $b, $c) { return <em>$a + $b + $c</em>; } ]]> </code> <code title="Invalid: One of the parameters is not being used."> <![CDATA[ function addThree($a, $b, $c) { return <em>$a + $b</em>; } ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel