mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
coding standards elseif
This commit is contained in:
parent
e5b1182a0d
commit
f6aedea271
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ class Debugger {
|
|||
// Sniff for globals as !== explodes in < 5.4
|
||||
if ($key === 'GLOBALS' && is_array($val) && isset($val['GLOBALS'])) {
|
||||
$val = '[recursion]';
|
||||
} else if ($val !== $var) {
|
||||
} elseif ($val !== $var) {
|
||||
$val = self::_export($val, $depth, $indent);
|
||||
}
|
||||
$vars[] = $break . self::exportVar($key) .
|
||||
|
|
Loading…
Reference in a new issue