PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   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: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: 2 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>