Completed
Push — 1.4-user-interface-entity-mapp... ( 8eba19...bbc1f0 )
by Kamil
19:43 queued 07:23
created
src/Sylius/Component/Core/Model/ImagesAwareInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -31,7 +31,13 @@
 block discarded – undo
31 31
 
32 32
     public function hasImage(ImageInterface $image): bool;
33 33
 
34
+    /**
35
+     * @return void
36
+     */
34 37
     public function addImage(ImageInterface $image): void;
35 38
 
39
+    /**
40
+     * @return void
41
+     */
36 42
     public function removeImage(ImageInterface $image): void;
37 43
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderInterface.php 1 patch
Doc Comments   +78 added lines patch added patch discarded remove patch
@@ -32,22 +32,51 @@  discard block
 block discarded – undo
32 32
     CustomerAwareInterface,
33 33
     ChannelAwareInterface
34 34
 {
35
+    /**
36
+     * @return null|UserInterface
37
+     */
35 38
     public function getUser(): ?UserInterface;
36 39
 
40
+    /**
41
+     * @return AddressInterface
42
+     */
37 43
     public function getShippingAddress(): ?AddressInterface;
38 44
 
45
+    /**
46
+     * @return void
47
+     */
39 48
     public function setShippingAddress(?AddressInterface $address): void;
40 49
 
50
+    /**
51
+     * @return AddressInterface
52
+     */
41 53
     public function getBillingAddress(): ?AddressInterface;
42 54
 
55
+    /**
56
+     * @param AddressInterface $address
57
+     *
58
+     * @return void
59
+     */
43 60
     public function setBillingAddress(?AddressInterface $address): void;
44 61
 
62
+    /**
63
+     * @return string
64
+     */
45 65
     public function getCheckoutState(): ?string;
46 66
 
67
+    /**
68
+     * @return void
69
+     */
47 70
     public function setCheckoutState(?string $checkoutState): void;
48 71
 
72
+    /**
73
+     * @return string
74
+     */
49 75
     public function getPaymentState(): ?string;
50 76
 
77
+    /**
78
+     * @return void
79
+     */
51 80
     public function setPaymentState(?string $paymentState): void;
52 81
 
53 82
     /**
@@ -69,28 +98,63 @@  discard block
 block discarded – undo
69 98
 
70 99
     public function hasShipments(): bool;
71 100
 
101
+    /**
102
+     * @return void
103
+     */
72 104
     public function addShipment(ShipmentInterface $shipment): void;
73 105
 
106
+    /**
107
+     * @return void
108
+     */
74 109
     public function removeShipment(ShipmentInterface $shipment): void;
75 110
 
111
+    /**
112
+     * @return void
113
+     */
76 114
     public function removeShipments(): void;
77 115
 
78 116
     public function hasShipment(ShipmentInterface $shipment): bool;
79 117
 
118
+    /**
119
+     * @return string
120
+     */
80 121
     public function getCurrencyCode(): ?string;
81 122
 
123
+    /**
124
+     * @return void
125
+     */
82 126
     public function setCurrencyCode(?string $currencyCode): void;
83 127
 
128
+    /**
129
+     * @return string
130
+     */
84 131
     public function getLocaleCode(): ?string;
85 132
 
133
+    /**
134
+     * @return void
135
+     */
86 136
     public function setLocaleCode(?string $localeCode): void;
87 137
 
138
+    /**
139
+     * @param PromotionCouponInterface $coupon
140
+     *
141
+     * @return void
142
+     */
88 143
     public function setPromotionCoupon(?BaseCouponInterface $coupon): void;
89 144
 
145
+    /**
146
+     * @return string
147
+     */
90 148
     public function getShippingState(): ?string;
91 149
 
150
+    /**
151
+     * @return void
152
+     */
92 153
     public function setShippingState(?string $state): void;
93 154
 
155
+    /**
156
+     * @return PaymentInterface
157
+     */
94 158
     public function getLastPayment(?string $state = null): ?PaymentInterface;
95 159
 
96 160
     public function getTaxTotal(): int;
@@ -99,12 +163,26 @@  discard block
 block discarded – undo
99 163
 
100 164
     public function getOrderPromotionTotal(): int;
101 165
 
166
+    /**
167
+     * @return string
168
+     */
102 169
     public function getTokenValue(): ?string;
103 170
 
171
+    /**
172
+     * @return void
173
+     */
104 174
     public function setTokenValue(?string $tokenValue): void;
105 175
 
176
+    /**
177
+     * @return string
178
+     */
106 179
     public function getCustomerIp(): ?string;
107 180
 
181
+    /**
182
+     * @param string|null $customerIp
183
+     *
184
+     * @return void
185
+     */
108 186
     public function setCustomerIp(?string $customerIp): void;
109 187
 
110 188
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderItemInterface.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -19,16 +19,32 @@
 block discarded – undo
19 19
 {
20 20
     public function getProduct(): ?ProductInterface;
21 21
 
22
+    /**
23
+     * @return ProductVariantInterface
24
+     */
22 25
     public function getVariant(): ?ProductVariantInterface;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function setVariant(?ProductVariantInterface $variant): void;
25 31
 
26 32
     public function getProductName(): ?string;
27 33
 
34
+    /**
35
+     * @param string $productName
36
+     *
37
+     * @return void
38
+     */
28 39
     public function setProductName(?string $productName): void;
29 40
 
30 41
     public function getVariantName(): ?string;
31 42
 
43
+    /**
44
+     * @param string $variantName
45
+     *
46
+     * @return void
47
+     */
32 48
     public function setVariantName(?string $variantName): void;
33 49
 
34 50
     public function getTaxTotal(): int;
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/PaymentMethodInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -19,7 +19,15 @@
 block discarded – undo
19 19
 
20 20
 interface PaymentMethodInterface extends BasePaymentMethodInterface, ChannelsAwareInterface
21 21
 {
22
+    /**
23
+     * @param GatewayConfigInterface $gateway
24
+     *
25
+     * @return void
26
+     */
22 27
     public function setGatewayConfig(?GatewayConfigInterface $gateway): void;
23 28
 
29
+    /**
30
+     * @return GatewayConfigInterface
31
+     */
24 32
     public function getGatewayConfig(): ?GatewayConfigInterface;
25 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductImageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,8 +24,14 @@
 block discarded – undo
24 24
      */
25 25
     public function getProductVariants(): Collection;
26 26
 
27
+    /**
28
+     * @return void
29
+     */
27 30
     public function addProductVariant(ProductVariantInterface $productVariant): void;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function removeProductVariant(ProductVariantInterface $productVariant): void;
30 36
 
31 37
     public function hasProductVariant(ProductVariantInterface $productVariant): bool;
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductImagesAwareInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -31,7 +31,13 @@
 block discarded – undo
31 31
 
32 32
     public function hasImage(ProductImageInterface $image): bool;
33 33
 
34
+    /**
35
+     * @return void
36
+     */
34 37
     public function addImage(ProductImageInterface $image): void;
35 38
 
39
+    /**
40
+     * @return void
41
+     */
36 42
     public function removeImage(ProductImageInterface $image): void;
37 43
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -17,15 +17,33 @@
 block discarded – undo
17 17
 
18 18
 interface ProductTaxonInterface extends ResourceInterface
19 19
 {
20
+    /**
21
+     * @return ProductInterface
22
+     */
20 23
     public function getProduct(): ?ProductInterface;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setProduct(?ProductInterface $product): void;
23 29
 
30
+    /**
31
+     * @return TaxonInterface
32
+     */
24 33
     public function getTaxon(): ?TaxonInterface;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function setTaxon(?TaxonInterface $taxon): void;
27 39
 
40
+    /**
41
+     * @return integer
42
+     */
28 43
     public function getPosition(): ?int;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setPosition(?int $position): void;
31 49
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonsAwareInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,8 +24,14 @@
 block discarded – undo
24 24
 
25 25
     public function hasProductTaxon(ProductTaxonInterface $productTaxon): bool;
26 26
 
27
+    /**
28
+     * @return void
29
+     */
27 30
     public function addProductTaxon(ProductTaxonInterface $productTaxon): void;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function removeProductTaxon(ProductTaxonInterface $productTaxon): void;
30 36
 
31 37
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTranslationInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,5 +22,8 @@
 block discarded – undo
22 22
      */
23 23
     public function getShortDescription(): ?string;
24 24
 
25
+    /**
26
+     * @return void
27
+     */
25 28
     public function setShortDescription(?string $shortDescription): void;
26 29
 }
Please login to merge, or discard this patch.