File "ElseIfDeclarationUnitTest.inc"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc
File size: 189 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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

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

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

?>