PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeIndentStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeIndentStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeIndentStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 682 bytes
 

Contents

Class file image Download
<documentation title="Scope Indentation"> <standard> <![CDATA[ Any scope openers except for switch statements should be indented 1 level. This includes classes, functions, and control structures. ]]> </standard> <code_comparison> <code title="Valid: Consistent indentation level for scope."> <![CDATA[ function foo() { <em> </em>if ($test) { <em> </em>$var = 1; <em> </em>} } ]]> </code> <code title="Invalid: Indentation is not used for scope."> <![CDATA[ function foo() { <em></em>if ($test) { <em></em>$var = 1; <em></em>} } ]]> </code> </code_comparison> </documentation>