Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class StateChangedEvent implements RenderingEvent |
||
16 | { |
||
17 | private $renderingState; |
||
18 | |||
19 | 61 | public function __construct(RenderingState $renderingState) |
|
20 | { |
||
21 | 61 | $this->renderingState = $renderingState; |
|
22 | 61 | } |
|
23 | |||
24 | /** |
||
25 | * @return RenderingState |
||
26 | */ |
||
27 | 58 | public function getRenderingState(): RenderingState |
|
30 | } |
||
31 | } |
||
32 |