1 | <?php |
||
10 | abstract class AbstractImportLabels extends AbstractCommand implements LabelSecurityInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var Labels |
||
14 | */ |
||
15 | private $labels; |
||
16 | |||
17 | /** |
||
18 | * @param string $itemId |
||
19 | * @param Labels $labels |
||
20 | */ |
||
21 | public function __construct($itemId, Labels $labels) |
||
26 | |||
27 | /** |
||
28 | * @return Labels |
||
29 | */ |
||
30 | public function getLabels() |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | public function getNames() |
||
47 | } |
||
48 |