| 1 | <?php |
||
| 8 | abstract class AbstractImageEvent extends AbstractEvent |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Image |
||
| 12 | */ |
||
| 13 | protected $image; |
||
| 14 | |||
| 15 | final public function __construct(string $itemId, Image $image) |
||
| 20 | |||
| 21 | public function getImage(): Image |
||
| 25 | |||
| 26 | public function serialize(): array |
||
| 32 | |||
| 33 | public static function deserialize(array $data): AbstractImageEvent |
||
| 40 | } |
||
| 41 |