Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class PreNormalizeEvent extends Event |
||
22 | { |
||
23 | private object $resource; |
||
24 | |||
25 | public function __construct(object $resource) |
||
26 | { |
||
27 | $this->resource = $resource; |
||
28 | } |
||
29 | |||
30 | public function getResource(): object |
||
31 | { |
||
32 | return $this->resource; |
||
33 | } |
||
34 | |||
35 | public function setResource(object $resource): self |
||
40 | } |
||
41 | } |
||
42 |