| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3.0175 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | 1 | public function compile($statement, Context $context) |
|
| 22 | { |
||
| 23 | 1 | if (count($statement->stmts) > 0) { |
|
| 24 | 1 | foreach ($statement->stmts as $stmt) { |
|
| 25 | 1 | \PHPSA\nodeVisitorFactory($stmt, $context); |
|
| 26 | 1 | } |
|
| 27 | 1 | } else { |
|
| 28 | $context->notice('not-implemented-body', 'Missing body', $statement); |
||
| 29 | } |
||
| 30 | 1 | } |
|
| 31 | } |
||
| 32 |