Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
21 | 2 | public function format(Formattable $formattable): string |
|
22 | { |
||
23 | 2 | if ($formattable instanceof DefaultReport) { |
|
24 | return |
||
25 | 1 | sprintf( |
|
26 | 1 | '[%s]: got %s', |
|
27 | 1 | get_class($this), |
|
28 | 1 | get_class($formattable) |
|
29 | ); |
||
30 | } |
||
31 | 1 | return $this->errorMessage($formattable, DefaultReport::class); |
|
32 | } |
||
45 |