| 1 | <?php | ||
| 9 | class AddLabelToMultiple | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * @var OfferIdentifierCollection | ||
| 13 | */ | ||
| 14 | protected $offerIdentifiers; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * @var Label | ||
| 18 | */ | ||
| 19 | protected $label; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @param OfferIdentifierCollection $offerIdentifiers | ||
| 23 | * @param Label $label | ||
| 24 | */ | ||
| 25 | public function __construct(OfferIdentifierCollection $offerIdentifiers, Label $label) | ||
| 30 | |||
| 31 | /** | ||
| 32 | * @return OfferIdentifierCollection | ||
| 33 | */ | ||
| 34 | public function getOfferIdentifiers() | ||
| 38 | |||
| 39 | /** | ||
| 40 | * @return Label | ||
| 41 | */ | ||
| 42 | public function getLabel() | ||
| 46 | } | ||
| 47 |