| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class PostDeserializeEvent extends Event |
||
| 19 | { |
||
| 20 | private $data; |
||
| 21 | |||
| 22 | public function __construct($controllerResult) |
||
| 23 | { |
||
| 24 | $this->data = $controllerResult; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getData() |
||
| 28 | { |
||
| 29 | return $this->data; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function setData($data): void |
||
| 35 | } |
||
| 36 | } |
||
| 37 |