Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/cakephp/cakephp-codesniffer/CakePHP/Tests/Commenting/DocBlockAlignmentUnitTest.2.inc
<?php
/**
 * Hello World.
 *
 * This is a description.
 */
$things = 'fun';

/**
 * I'm static.
 */
Foo::bar($things);

$anotherThing = 'what';

/**
 * What happens with If's?
 *
 */
if ($anotherThing !== 'notfun') {
    $anotherThing = 'Oh no.';
}

$hello = 'world';