PHP 7.3 Compat: Continue Targeting Switch issues Warning
trepmal opened this issue · 2 comments
trepmal commented
continue statements targeting switch control flow structures will now generate a warning. In PHP such continue statements are equivalent to break, while they behave as continue 2 in other languages.
Line 914 in e049820
paulschreiber commented
Should this be changed to break
?
trepmal commented
I believe so