PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PEAR/Docs/Functions/FunctionCallSignatureStandard.xml

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Plugin for Z-Ray   zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PEAR/Docs/Functions/FunctionCallSignatureStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PEAR/Docs/Functions/FunctionCallSignatureStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CodeIgniter Plugin for Z-Ray
Show CodeIgniter application information in Z-Ray
Author: By
Last change:
Date: 1 year ago
Size: 669 bytes
 

Contents

Class file image Download
<documentation title="Function Calls"> <standard> <![CDATA[ Functions should be called with no spaces between the function name, the opening parenthesis, and the first parameter; and no space between the last parameter, the closing parenthesis, and the semicolon. ]]> </standard> <code_comparison> <code title="Valid: spaces between parameters"> <![CDATA[ $var = foo($bar, $baz, $quux); ]]> </code> <code title="Invalid: additional spaces used"> <![CDATA[ $var = foo<em> </em>(<em> </em>$bar, $baz, $quux<em> </em>)<em> </em>; ]]> </code> </code_comparison> </documentation>