PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PEAR/Docs/ControlStructures/MultiLineConditionStandard.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/ControlStructures/MultiLineConditionStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PEAR/Docs/ControlStructures/MultiLineConditionStandard.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: 1,304 bytes
 

Contents

Class file image Download
<documentation title="Multi-line If Conditions"> <standard> <![CDATA[ Multi-line if conditions should be indented one level and each line should begin with a boolean operator. The end parenthesis should be on a new line. ]]> </standard> <code_comparison> <code title="Valid: Correct indentation."> <![CDATA[ if ($foo <em> </em>&& $bar ) { } ]]> </code> <code title="Invalid: No indentation used on the condition lines."> <![CDATA[ if ($foo <em></em>&& $bar ) { } ]]> </code> </code_comparison> <code_comparison> <code title="Valid: Boolean operator at the start of the line."> <![CDATA[ if ($foo <em>&&</em> $bar ) { } ]]> </code> <code title="Invalid: Boolean operator at the end of the line."> <![CDATA[ if ($foo <em>&&</em> $bar ) { } ]]> </code> </code_comparison> <code_comparison> <code title="Valid: End parenthesis on a new line."> <![CDATA[ if ($foo && $bar <em>)</em> { } ]]> </code> <code title="Invalid: End parenthesis not moved to a new line."> <![CDATA[ if ($foo && $bar<em>)</em> { } ]]> </code> </code_comparison> </documentation>