| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 16 | public function report(bool $rebuild = true): ReportInterface |
||
| 17 | { |
||
| 18 | if (true === $rebuild) { |
||
| 19 | $this->meetConditions(); |
||
| 20 | $this->beforeReport(); |
||
| 21 | /** @noinspection PhpParamsInspection */ |
||
| 22 | $this->report->buildOn($this); |
||
|
1 ignored issue
–
show
|
|||
| 23 | } |
||
| 24 | return |
||
| 25 | $this->report; |
||
| 26 | } |
||
| 42 |