| Total Complexity | 2 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 10 | final class Trace implements \Stringable  | 
            ||
| 11 | { | 
            ||
| 12 | 736 | public function __construct(  | 
            |
| 13 | public readonly string $alias,  | 
            ||
| 14 | public readonly string $information,  | 
            ||
| 15 | public ?string $context = null  | 
            ||
| 16 |     ) { | 
            ||
| 17 | 736 | $this->context ??= '-';  | 
            |
| 18 | }  | 
            ||
| 19 | |||
| 20 | 410 | public function __toString(): string  | 
            |
| 28 | }  | 
            ||
| 29 | }  | 
            ||
| 30 |