1 | <?php |
||
13 | class ConstraintAwareLabelService implements LabelServiceInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var RepositoryInterface |
||
17 | */ |
||
18 | private $labelRepository; |
||
19 | |||
20 | /** |
||
21 | * @var UuidGeneratorInterface |
||
22 | */ |
||
23 | private $uuidGenerator; |
||
24 | |||
25 | /** |
||
26 | * @param RepositoryInterface $labelRepository |
||
27 | * @param UuidGeneratorInterface $uuidGenerator |
||
28 | */ |
||
29 | public function __construct( |
||
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | */ |
||
40 | public function createLabelAggregateIfNew(LabelName $labelName, $visible) |
||
57 | } |
||
58 |