File "LowercaseDeclarationUnitTest.inc.fixed"

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

<?php

foreach ($condition as $cond) {}

for ($i = 1; $i < 10; $i++) {}

while ($i < 10) {}

do {
} while ($1 < 10)

switch ($condition) {}

if ($condition) {
} else if ($condition) {
} elseif ($condition) {
} else {
}

try {
} catch (Exception $e) {
}

$r = match ($x) {};