1 | <?php |
||
12 | class ImportLabels extends AbstractOrganizerCommand implements AuthorizableCommandInterface, LabelSecurityInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var Labels |
||
16 | */ |
||
17 | private $labels; |
||
18 | |||
19 | /** |
||
20 | * @param string $organizerId |
||
21 | * @param Labels $label |
||
22 | */ |
||
23 | public function __construct( |
||
30 | |||
31 | /** |
||
32 | * @return Labels |
||
33 | */ |
||
34 | public function getLabels() |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function getItemId() |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function getPermission() |
||
54 | |||
55 | /** |
||
56 | * @inheritdoc |
||
57 | */ |
||
58 | public function getNames() |
||
67 | } |
||
68 |