PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/LowercaseDeclarationStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/LowercaseDeclarationStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/LowercaseDeclarationStandard.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: 546 bytes
 

Contents

Class file image Download
<documentation title="Lowercase Control Structure Keywords"> <standard> <![CDATA[ The php keywords if, else, elseif, foreach, for, do, switch, while, try, and catch should be lowercase. ]]> </standard> <code_comparison> <code title="Valid: Lowercase if keyword."> <![CDATA[ <em>if</em> ($foo) { $bar = true; } ]]> </code> <code title="Invalid: Uppercase if keyword."> <![CDATA[ <em>IF</em> ($foo) { $bar = true; } ]]> </code> </code_comparison> </documentation>