mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 02:27:59 +01:00
9 lines
126 B
Markdown
9 lines
126 B
Markdown
|
# ContinueOutsideLoop
|
||
|
|
||
|
Emitted when encountering a `continue` statement outside a loop context.
|
||
|
|
||
|
```php
|
||
|
$a = 5;
|
||
|
continue;
|
||
|
```
|