PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceBsdAllmanStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceBsdAllmanStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceBsdAllmanStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 7 days ago
Size: 697 bytes
 

Contents

Class file image Download
<documentation title="Opening Brace in Function Declarations"> <standard> <![CDATA[ Function declarations follow the "BSD/Allman style". The function brace is on the line following the function declaration and is indented to the same column as the start of the function declaration. ]]> </standard> <code_comparison> <code title="Valid: Brace on next line."> <![CDATA[ function fooFunction($arg1, $arg2 = '') <em>{</em> ... } ]]> </code> <code title="Invalid: Brace on same line."> <![CDATA[ function fooFunction($arg1, $arg2 = '') <em>{</em> ... } ]]> </code> </code_comparison> </documentation>