Mercurial > hg > isophonics-drupal-site
view vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/EmptyStatementStandard.xml @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
line wrap: on
line source
<documentation title="Empty Statements"> <standard> <![CDATA[ Control Structures must have at least one statement inside of the body. ]]> </standard> <code_comparison> <code title="Valid: There is a statement inside the control structure."> <![CDATA[ if ($test) { $var = 1; } ]]> </code> <code title="Invalid: The control structure has no statements."> <![CDATA[ if ($test) { <em>// do nothing</em> } ]]> </code> </code_comparison> </documentation>