📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 09:12:03
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
Functions
📍 /opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions
🔄 Refresh
✏️
Editing: CallTimePassByReferenceStandard.xml
Read Only
<documentation title="Call-Time Pass-By-Reference"> <standard> <![CDATA[ Call-time pass-by-reference is not allowed. It should be declared in the function definition. ]]> </standard> <code_comparison> <code title="Valid: Pass-by-reference is specified in the function definition."> <![CDATA[ function foo(<em>&</em>$bar) { $bar++; } $baz = 1; foo($baz); ]]> </code> <code title="Invalid: Pass-by-reference is done in the call to a function."> <![CDATA[ function foo($bar) { $bar++; } $baz = 1; foo(<em>&</em>$baz); ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel