| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class Trace implements \Stringable |
||
| 15 | { |
||
| 16 | use ClosureRendererTrait; |
||
|
|
|||
| 17 | |||
| 18 | 742 | public function __construct( |
|
| 19 | public readonly string $alias, |
||
| 20 | public array $info, |
||
| 21 | ) { |
||
| 22 | } |
||
| 23 | |||
| 24 | 421 | public function __toString(): string |
|
| 31 | } |
||
| 32 | |||
| 33 | 421 | private function stringifyValue(mixed $item): string |
|
| 41 | }; |
||
| 42 | } |
||
| 44 |