Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc
<?php

if ($something) {
} else if ($somethingElse) {
}

if ($something) {
} elseif ($somethingElse) {
}

if ($something) {
} else if ($somethingElse) {
} elseif ($another) {
} else {
}

?>