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