1 | <?php |
||
9 | final class Library |
||
10 | { |
||
11 | private $fromEventLogUuid; |
||
12 | private $untilEventLogUuid; |
||
13 | private $products; |
||
14 | private $discounts; |
||
15 | private $deletedProducts; |
||
16 | private $deletedDiscounts; |
||
17 | |||
18 | 2 | public function __construct( |
|
33 | |||
34 | 1 | public function getFromEventLogUuid(): UuidInterface |
|
38 | |||
39 | 1 | public function getUntilEventLogUuid(): UuidInterface |
|
43 | |||
44 | 1 | public function getProducts(): ProductCollection |
|
48 | |||
49 | 1 | public function getDiscounts(): DiscountCollection |
|
53 | |||
54 | 1 | public function getDeletedProducts(): ProductCollection |
|
58 | |||
59 | 1 | public function getDeletedDiscounts(): DiscountCollection |
|
63 | } |
||
64 |