1 | <?php |
||
7 | abstract class AbstractUpdateType extends AbstractCommand |
||
8 | { |
||
9 | /** |
||
10 | * @var EventType |
||
11 | */ |
||
12 | protected $type; |
||
13 | |||
14 | /** |
||
15 | * @param string $itemId |
||
16 | * @param EventType $type |
||
17 | */ |
||
18 | public function __construct($itemId, EventType $type) |
||
23 | |||
24 | /** |
||
25 | * @return EventType |
||
26 | */ |
||
27 | public function getType() |
||
31 | } |
||
32 |