@@ -31,13 +31,22 @@ |
||
| 31 | 31 | ?string $baseLocaleCode = null |
| 32 | 32 | ): Collection; |
| 33 | 33 | |
| 34 | + /** |
|
| 35 | + * @return void |
|
| 36 | + */ |
|
| 34 | 37 | public function addAttribute(AttributeValueInterface $attribute): void; |
| 35 | 38 | |
| 39 | + /** |
|
| 40 | + * @return void |
|
| 41 | + */ |
|
| 36 | 42 | public function removeAttribute(AttributeValueInterface $attribute): void; |
| 37 | 43 | |
| 38 | 44 | public function hasAttribute(AttributeValueInterface $attribute): bool; |
| 39 | 45 | |
| 40 | 46 | public function hasAttributeByCodeAndLocale(string $attributeCode, ?string $localeCode = null): bool; |
| 41 | 47 | |
| 48 | + /** |
|
| 49 | + * @param string $localeCode |
|
| 50 | + */ |
|
| 42 | 51 | public function getAttributeByCodeAndLocale(string $attributeCode, ?string $localeCode = null): ?AttributeValueInterface; |
| 43 | 52 | } |
@@ -17,5 +17,8 @@ |
||
| 17 | 17 | { |
| 18 | 18 | public function getCustomer(): ?CustomerInterface; |
| 19 | 19 | |
| 20 | + /** |
|
| 21 | + * @return void |
|
| 22 | + */ |
|
| 20 | 23 | public function setCustomer(?CustomerInterface $customer): void; |
| 21 | 24 | } |
@@ -18,30 +18,60 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | interface AdjustmentInterface extends ResourceInterface, TimestampableInterface |
| 20 | 20 | { |
| 21 | + /** |
|
| 22 | + * @return OrderItemUnitInterface|null |
|
| 23 | + */ |
|
| 21 | 24 | public function getAdjustable(): ?AdjustableInterface; |
| 22 | 25 | |
| 26 | + /** |
|
| 27 | + * @return void |
|
| 28 | + */ |
|
| 23 | 29 | public function setAdjustable(?AdjustableInterface $adjustable): void; |
| 24 | 30 | |
| 31 | + /** |
|
| 32 | + * @return string|null |
|
| 33 | + */ |
|
| 25 | 34 | public function getType(): ?string; |
| 26 | 35 | |
| 36 | + /** |
|
| 37 | + * @return void |
|
| 38 | + */ |
|
| 27 | 39 | public function setType(?string $type): void; |
| 28 | 40 | |
| 41 | + /** |
|
| 42 | + * @return string|null |
|
| 43 | + */ |
|
| 29 | 44 | public function getLabel(): ?string; |
| 30 | 45 | |
| 46 | + /** |
|
| 47 | + * @return void |
|
| 48 | + */ |
|
| 31 | 49 | public function setLabel(?string $label): void; |
| 32 | 50 | |
| 33 | 51 | public function getAmount(): int; |
| 34 | 52 | |
| 53 | + /** |
|
| 54 | + * @return void |
|
| 55 | + */ |
|
| 35 | 56 | public function setAmount(int $amount): void; |
| 36 | 57 | |
| 37 | 58 | public function isNeutral(): bool; |
| 38 | 59 | |
| 60 | + /** |
|
| 61 | + * @return void |
|
| 62 | + */ |
|
| 39 | 63 | public function setNeutral(bool $neutral): void; |
| 40 | 64 | |
| 41 | 65 | public function isLocked(): bool; |
| 42 | 66 | |
| 67 | + /** |
|
| 68 | + * @return void |
|
| 69 | + */ |
|
| 43 | 70 | public function lock(): void; |
| 44 | 71 | |
| 72 | + /** |
|
| 73 | + * @return void |
|
| 74 | + */ |
|
| 45 | 75 | public function unlock(): void; |
| 46 | 76 | |
| 47 | 77 | /** |
@@ -54,7 +84,13 @@ discard block |
||
| 54 | 84 | */ |
| 55 | 85 | public function isCredit(): bool; |
| 56 | 86 | |
| 87 | + /** |
|
| 88 | + * @return string|null |
|
| 89 | + */ |
|
| 57 | 90 | public function getOriginCode(): ?string; |
| 58 | 91 | |
| 92 | + /** |
|
| 93 | + * @return void |
|
| 94 | + */ |
|
| 59 | 95 | public function setOriginCode(?string $originCode): void; |
| 60 | 96 | } |
@@ -17,5 +17,8 @@ |
||
| 17 | 17 | { |
| 18 | 18 | public function getOrder(): ?OrderInterface; |
| 19 | 19 | |
| 20 | + /** |
|
| 21 | + * @return void |
|
| 22 | + */ |
|
| 20 | 23 | public function setOrder(?OrderInterface $order): void; |
| 21 | 24 | } |
@@ -20,6 +20,9 @@ |
||
| 20 | 20 | { |
| 21 | 21 | public function getShipment(): ?ShipmentInterface; |
| 22 | 22 | |
| 23 | + /** |
|
| 24 | + * @return void |
|
| 25 | + */ |
|
| 23 | 26 | public function setShipment(?ShipmentInterface $shipment): void; |
| 24 | 27 | |
| 25 | 28 | public function getShippable(): ?ShippableInterface; |
@@ -17,16 +17,34 @@ |
||
| 17 | 17 | |
| 18 | 18 | interface UpdatePageInterface extends BaseUpdatePageInterface |
| 19 | 19 | { |
| 20 | + /** |
|
| 21 | + * @return void |
|
| 22 | + */ |
|
| 20 | 23 | public function attachAvatar(string $path): void; |
| 21 | 24 | |
| 25 | + /** |
|
| 26 | + * @return void |
|
| 27 | + */ |
|
| 22 | 28 | public function changeUsername(string $username): void; |
| 23 | 29 | |
| 30 | + /** |
|
| 31 | + * @return void |
|
| 32 | + */ |
|
| 24 | 33 | public function changeEmail(string $email): void; |
| 25 | 34 | |
| 35 | + /** |
|
| 36 | + * @return void |
|
| 37 | + */ |
|
| 26 | 38 | public function changePassword(string $password): void; |
| 27 | 39 | |
| 40 | + /** |
|
| 41 | + * @return void |
|
| 42 | + */ |
|
| 28 | 43 | public function changeLocale(string $localeCode): void; |
| 29 | 44 | |
| 45 | + /** |
|
| 46 | + * @return void |
|
| 47 | + */ |
|
| 30 | 48 | public function removeAvatar(): void; |
| 31 | 49 | |
| 32 | 50 | public function hasAvatar(string $avatarPath): bool; |
@@ -25,14 +25,29 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | public function isSlugReadonlyIn(string $locale): bool; |
| 27 | 27 | |
| 28 | + /** |
|
| 29 | + * @return void |
|
| 30 | + */ |
|
| 28 | 31 | public function specifyPrice(string $channelName, string $price): void; |
| 29 | 32 | |
| 33 | + /** |
|
| 34 | + * @return void |
|
| 35 | + */ |
|
| 30 | 36 | public function specifyOriginalPrice(string $channelName, string $originalPrice): void; |
| 31 | 37 | |
| 38 | + /** |
|
| 39 | + * @return void |
|
| 40 | + */ |
|
| 32 | 41 | public function nameItIn(string $name, string $localeCode): void; |
| 33 | 42 | |
| 43 | + /** |
|
| 44 | + * @return void |
|
| 45 | + */ |
|
| 34 | 46 | public function addSelectedAttributes(): void; |
| 35 | 47 | |
| 48 | + /** |
|
| 49 | + * @return void |
|
| 50 | + */ |
|
| 36 | 51 | public function removeAttribute(string $attributeName, string $localeCode): void; |
| 37 | 52 | |
| 38 | 53 | public function getAttributeValue(string $attributeName, string $localeCode): string; |
@@ -45,48 +60,83 @@ discard block |
||
| 45 | 60 | |
| 46 | 61 | public function isMainTaxonChosen(string $taxonName): bool; |
| 47 | 62 | |
| 63 | + /** |
|
| 64 | + * @return void |
|
| 65 | + */ |
|
| 48 | 66 | public function selectMainTaxon(TaxonInterface $taxon): void; |
| 49 | 67 | |
| 68 | + /** |
|
| 69 | + * @return void |
|
| 70 | + */ |
|
| 50 | 71 | public function disableTracking(): void; |
| 51 | 72 | |
| 73 | + /** |
|
| 74 | + * @return void |
|
| 75 | + */ |
|
| 52 | 76 | public function enableTracking(): void; |
| 53 | 77 | |
| 54 | 78 | public function isTracked(): bool; |
| 55 | 79 | |
| 80 | + /** |
|
| 81 | + * @return void |
|
| 82 | + */ |
|
| 56 | 83 | public function enableSlugModification(string $locale): void; |
| 57 | 84 | |
| 58 | 85 | public function isImageWithTypeDisplayed(string $type): bool; |
| 59 | 86 | |
| 60 | 87 | /** |
| 61 | 88 | * @param string $type |
| 89 | + * @return void |
|
| 62 | 90 | */ |
| 63 | 91 | public function attachImage(string $path, string $type = null): void; |
| 64 | 92 | |
| 93 | + /** |
|
| 94 | + * @return void |
|
| 95 | + */ |
|
| 65 | 96 | public function changeImageWithType(string $type, string $path): void; |
| 66 | 97 | |
| 98 | + /** |
|
| 99 | + * @return void |
|
| 100 | + */ |
|
| 67 | 101 | public function removeImageWithType(string $type): void; |
| 68 | 102 | |
| 103 | + /** |
|
| 104 | + * @return void |
|
| 105 | + */ |
|
| 69 | 106 | public function removeFirstImage(): void; |
| 70 | 107 | |
| 108 | + /** |
|
| 109 | + * @return void |
|
| 110 | + */ |
|
| 71 | 111 | public function modifyFirstImageType(string $type): void; |
| 72 | 112 | |
| 73 | 113 | public function countImages(): int; |
| 74 | 114 | |
| 75 | 115 | /** |
| 76 | 116 | * @param string[] $productsNames |
| 117 | + * @return void |
|
| 77 | 118 | */ |
| 78 | 119 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames): void; |
| 79 | 120 | |
| 80 | 121 | public function hasAssociatedProduct(string $productName, ProductAssociationTypeInterface $productAssociationType): bool; |
| 81 | 122 | |
| 123 | + /** |
|
| 124 | + * @return void |
|
| 125 | + */ |
|
| 82 | 126 | public function removeAssociatedProduct(string $productName, ProductAssociationTypeInterface $productAssociationType): void; |
| 83 | 127 | |
| 84 | 128 | public function getPricingConfigurationForChannelAndCurrencyCalculator(ChannelInterface $channel, CurrencyInterface $currency): string; |
| 85 | 129 | |
| 130 | + /** |
|
| 131 | + * @return void |
|
| 132 | + */ |
|
| 86 | 133 | public function activateLanguageTab(string $locale): void; |
| 87 | 134 | |
| 88 | 135 | public function getSlug(string $locale): string; |
| 89 | 136 | |
| 137 | + /** |
|
| 138 | + * @return void |
|
| 139 | + */ |
|
| 90 | 140 | public function specifySlugIn(string $slug, string $locale): void; |
| 91 | 141 | |
| 92 | 142 | public function getPriceForChannel(string $channelName): string; |
@@ -95,17 +145,32 @@ discard block |
||
| 95 | 145 | |
| 96 | 146 | public function isShippingRequired(): bool; |
| 97 | 147 | |
| 148 | + /** |
|
| 149 | + * @return void |
|
| 150 | + */ |
|
| 98 | 151 | public function goToVariantsList(): void; |
| 99 | 152 | |
| 153 | + /** |
|
| 154 | + * @return void |
|
| 155 | + */ |
|
| 100 | 156 | public function goToVariantCreation(): void; |
| 101 | 157 | |
| 158 | + /** |
|
| 159 | + * @return void |
|
| 160 | + */ |
|
| 102 | 161 | public function goToVariantGeneration(): void; |
| 103 | 162 | |
| 104 | 163 | public function hasInventoryTab(): bool; |
| 105 | 164 | |
| 106 | 165 | public function isShowInShopButtonDisabled(): bool; |
| 107 | 166 | |
| 167 | + /** |
|
| 168 | + * @return void |
|
| 169 | + */ |
|
| 108 | 170 | public function showProductInChannel(string $channel): void; |
| 109 | 171 | |
| 172 | + /** |
|
| 173 | + * @return void |
|
| 174 | + */ |
|
| 110 | 175 | public function showProductInSingleChannel(): void; |
| 111 | 176 | } |
@@ -19,8 +19,14 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | interface UpdatePageInterface extends BaseUpdatePageInterface |
| 21 | 21 | { |
| 22 | + /** |
|
| 23 | + * @return void |
|
| 24 | + */ |
|
| 22 | 25 | public function disableTracking(): void; |
| 23 | 26 | |
| 27 | + /** |
|
| 28 | + * @return void |
|
| 29 | + */ |
|
| 24 | 30 | public function enableTracking(): void; |
| 25 | 31 | |
| 26 | 32 | public function isCodeDisabled(): bool; |
@@ -39,15 +45,30 @@ discard block |
||
| 39 | 45 | |
| 40 | 46 | public function getNameInLanguage(string $language): string; |
| 41 | 47 | |
| 48 | + /** |
|
| 49 | + * @return void |
|
| 50 | + */ |
|
| 42 | 51 | public function selectOption(string $optionName, string $optionValue): void; |
| 43 | 52 | |
| 44 | 53 | public function isShowInShopButtonDisabled(): bool; |
| 45 | 54 | |
| 55 | + /** |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 46 | 58 | public function showProductInChannel(string $channel): void; |
| 47 | 59 | |
| 60 | + /** |
|
| 61 | + * @return void |
|
| 62 | + */ |
|
| 48 | 63 | public function showProductInSingleChannel(): void; |
| 49 | 64 | |
| 65 | + /** |
|
| 66 | + * @return void |
|
| 67 | + */ |
|
| 50 | 68 | public function specifyCurrentStock(int $amount): void; |
| 51 | 69 | |
| 70 | + /** |
|
| 71 | + * @return void |
|
| 72 | + */ |
|
| 52 | 73 | public function specifyPrice(int $price): void; |
| 53 | 74 | } |
@@ -126,6 +126,7 @@ |
||
| 126 | 126 | * @Given a customer :customer placed an order :orderNumber |
| 127 | 127 | * @Given the customer :customer has already placed an order :orderNumber |
| 128 | 128 | * @Given there is a customer :customer that placed an order :orderNumber in channel :channel |
| 129 | + * @param string $orderNumber |
|
| 129 | 130 | */ |
| 130 | 131 | public function thereIsCustomerThatPlacedOrder(CustomerInterface $customer, $orderNumber = null, $channel = null) |
| 131 | 132 | { |