| 1 | <?php | ||
| 7 | abstract class AbstractLabelEvent extends OrganizerEvent | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * @var Label | ||
| 11 | */ | ||
| 12 | private $label; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @param string $organizerId | ||
| 16 | * @param Label $label | ||
| 17 | */ | ||
| 18 | public function __construct( | ||
| 25 | |||
| 26 | /** | ||
| 27 | * @return Label | ||
| 28 | */ | ||
| 29 | public function getLabel() | ||
| 33 | |||
| 34 | /** | ||
| 35 |      * {@inheritdoc} | ||
| 36 | */ | ||
| 37 | public static function deserialize(array $data) | ||
| 44 | |||
| 45 | /** | ||
| 46 |      * {@inheritdoc} | ||
| 47 | */ | ||
| 48 | public function serialize() | ||
| 54 | } | ||
| 55 |