mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +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.