Subversion Repositories Applications.framework

Compare Revisions

Ignore whitespace Rev 4 → Rev 5

/trunk/tests/PHP_CodeSniffer-1.2.0RC1/CodeSniffer/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.inc
New file
0,0 → 1,26
<?php
 
if ($something) echo 'hello';
 
if ($something) {
echo 'hello';
} else echo 'hi';
 
if ($something) {
echo 'hello';
} else if ($else) echo 'hi';
 
foreach ($something as $thing) echo 'hello';
 
for ($i; $i > 0; $i--) echo 'hello';
 
while ($something) echo 'hello';
 
do {
$i--;
} while ($something);
 
if(true)
$someObject->{$name};
 
?>