| 1 | <?php |
||
| 19 | final class MetaEvent extends Event |
||
| 20 | { |
||
| 21 | private $isResultSet = false; |
||
| 22 | |||
| 23 | private $result; |
||
| 24 | |||
| 25 | private $data; |
||
| 26 | |||
| 27 | private $propertyName; |
||
| 28 | |||
| 29 | public function __construct($data, string $propertyName) |
||
| 34 | |||
| 35 | public function getData() |
||
| 39 | |||
| 40 | public function getPropertyName(): string |
||
| 44 | |||
| 45 | public function isResultSet(): bool |
||
| 49 | |||
| 50 | public function setResult($result): void |
||
| 55 | |||
| 56 | public function getResult() |
||
| 60 | } |
||
| 61 |