mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
15 lines
199 B
Markdown
15 lines
199 B
Markdown
# ContinueOutsideLoop
|
|
|
|
Emitted when encountering a `continue` statement outside a loop context.
|
|
|
|
```php
|
|
<?php
|
|
|
|
$a = 5;
|
|
continue;
|
|
```
|
|
|
|
## Why this is bad
|
|
|
|
The code won't compile in PHP 5.6 and above.
|