opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
PEAR
/
Docs
/
Functions
➕ New
📤 Upload
✎ Editing:
FunctionDeclarationStandard.xml
← Back
<documentation title="Function Declarations"> <standard> <![CDATA[ There should be exactly 1 space after the function keyword and 1 space on each side of the use keyword. Closures should use the Kernighan/Ritchie Brace style and other single-line functions should use the BSD/Allman style. Multi-line function declarations should have the parameter lists indented one level with the closing parenthesis on a newline followed by a single space and the opening brace of the function. ]]> </standard> <code_comparison> <code title="Valid: Correct spacing around function and use keywords."> <![CDATA[ $foo = function<em> </em>()<em> </em>use<em> </em>($bar)<em> </em>{ }; ]]> </code> <code title="Invalid: No spacing around function and use keywords."> <![CDATA[ $foo = function<em></em>()<em></em>use<em></em>($bar)<em></em>{ }; ]]> </code> </code_comparison> <code_comparison> <code title="Valid: Multi-line function declaration formatted properly."> <![CDATA[ function foo( <em> </em>$bar, <em> </em>$baz <em>) {</em> }; ]]> </code> <code title="Invalid: Invalid indentation and formatting of closing parenthesis."> <![CDATA[ function foo( <em></em>$bar, <em></em>$baz<em>)</em> <em>{</em> }; ]]> </code> </code_comparison> </documentation>
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel