mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
199 B
199 B
ContinueOutsideLoop
Emitted when encountering a continue
statement outside a loop context.
<?php
$a = 5;
continue;
Why this is bad
The code won't compile in PHP 5.6 and above.