Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
56 | 1 | public function full(string $name): string |
|
57 | { |
||
58 | return |
||
59 | 1 | sprintf( |
|
60 | 1 | 'Counter:[%s] Value: %s, Step: %s %s', |
|
61 | 1 | $this->theme->info($name), |
|
62 | 1 | $this->theme->comment((string)$this->report->getValue()), |
|
63 | 1 | $this->theme->dark((string)$this->report->getStep()), |
|
64 | 1 | PHP_EOL |
|
65 | ); |
||
68 |