| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class ClassNameCachedFoundEvent implements GacelaEventInterface |
||
| 12 | { |
||
| 13 | public function __construct( |
||
| 14 | private readonly string $cacheKey, |
||
| 15 | private readonly string $className, |
||
| 16 | ) { |
||
| 17 | } |
||
| 18 | |||
| 19 | public function cacheKey(): string |
||
| 20 | { |
||
| 21 | return $this->cacheKey; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function className(): string |
||
| 27 | } |
||
| 28 | |||
| 29 | public function toString(): string |
||
| 36 | ); |
||
| 37 | } |
||
| 39 |