You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning:"continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in
\libraries\windwalker\vendor\windwalker\filesystem\Iterator\ArrayObject.php on line 454
foreach ($ar as $k => $v) {
switch ($k) {
case 'flag':
$this->setFlags($v);
break;
case 'storage':
$this->exchangeArray($v);
break;
case 'iteratorClass':
$this->setIteratorClass($v);
break;
case 'protectedProperties':
continue 2; //"continue" uses "continue 2" to resolve this error
default:
$this->__set($k, $v);
}
}
The text was updated successfully, but these errors were encountered:
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in
\libraries\windwalker\vendor\windwalker\filesystem\Iterator\ArrayObject.php on line 454
The text was updated successfully, but these errors were encountered: