@@ -20,12 +20,14 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $code |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function specifyCode($code); |
| 25 | 26 | |
| 26 | 27 | /** |
| 27 | 28 | * @param string $name |
| 28 | 29 | * @param string $language |
| 30 | + * @return void |
|
| 29 | 31 | */ |
| 30 | 32 | public function nameIt($name, $language); |
| 31 | 33 | |
@@ -34,12 +36,24 @@ discard block |
||
| 34 | 36 | */ |
| 35 | 37 | public function isTypeDisabled(); |
| 36 | 38 | |
| 39 | + /** |
|
| 40 | + * @return void |
|
| 41 | + */ |
|
| 37 | 42 | public function addAttributeValue(string $value, string $localeCode): void; |
| 38 | 43 | |
| 44 | + /** |
|
| 45 | + * @return void |
|
| 46 | + */ |
|
| 39 | 47 | public function specifyMinValue(int $min): void; |
| 40 | 48 | |
| 49 | + /** |
|
| 50 | + * @return void |
|
| 51 | + */ |
|
| 41 | 52 | public function specifyMaxValue(int $max): void; |
| 42 | 53 | |
| 54 | + /** |
|
| 55 | + * @return void |
|
| 56 | + */ |
|
| 43 | 57 | public function checkMultiple(): void; |
| 44 | 58 | |
| 45 | 59 | /** |
@@ -20,6 +20,7 @@ discard block |
||
| 20 | 20 | /** |
| 21 | 21 | * @param string $name |
| 22 | 22 | * @param string $language |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function changeName($name, $language); |
| 25 | 26 | |
@@ -33,11 +34,20 @@ discard block |
||
| 33 | 34 | */ |
| 34 | 35 | public function isTypeDisabled(); |
| 35 | 36 | |
| 37 | + /** |
|
| 38 | + * @return void |
|
| 39 | + */ |
|
| 36 | 40 | public function changeAttributeValue(string $oldValue, string $newValue): void; |
| 37 | 41 | |
| 38 | 42 | public function hasAttributeValue(string $value): bool; |
| 39 | 43 | |
| 44 | + /** |
|
| 45 | + * @return void |
|
| 46 | + */ |
|
| 40 | 47 | public function addAttributeValue(string $value, string $localeCode): void; |
| 41 | 48 | |
| 49 | + /** |
|
| 50 | + * @return void |
|
| 51 | + */ |
|
| 42 | 52 | public function deleteAttributeValue(string $value): void; |
| 43 | 53 | } |
@@ -17,7 +17,13 @@ |
||
| 17 | 17 | |
| 18 | 18 | interface IndexPageInterface extends BaseIndexPageInterface |
| 19 | 19 | { |
| 20 | + /** |
|
| 21 | + * @return void |
|
| 22 | + */ |
|
| 20 | 23 | public function accept(array $parameters); |
| 21 | 24 | |
| 25 | + /** |
|
| 26 | + * @return void |
|
| 27 | + */ |
|
| 22 | 28 | public function reject(array $parameters); |
| 23 | 29 | } |
@@ -20,16 +20,19 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $code |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function specifyCode($code); |
| 25 | 26 | |
| 26 | 27 | /** |
| 27 | 28 | * @param string $name |
| 29 | + * @return void |
|
| 28 | 30 | */ |
| 29 | 31 | public function nameIt($name); |
| 30 | 32 | |
| 31 | 33 | /** |
| 32 | 34 | * @param string $ruleName |
| 35 | + * @return void |
|
| 33 | 36 | */ |
| 34 | 37 | public function addRule($ruleName); |
| 35 | 38 | |
@@ -37,6 +40,7 @@ discard block |
||
| 37 | 40 | * @param string $option |
| 38 | 41 | * @param string $value |
| 39 | 42 | * @param bool $multiple |
| 43 | + * @return void |
|
| 40 | 44 | */ |
| 41 | 45 | public function selectRuleOption($option, $value, $multiple = false); |
| 42 | 46 | |
@@ -44,12 +48,14 @@ discard block |
||
| 44 | 48 | * @param string $option |
| 45 | 49 | * @param string|string[] $value |
| 46 | 50 | * @param bool $multiple |
| 51 | + * @return void |
|
| 47 | 52 | */ |
| 48 | 53 | public function selectAutocompleteRuleOption($option, $value, $multiple = false); |
| 49 | 54 | |
| 50 | 55 | /** |
| 51 | 56 | * @param string $option |
| 52 | 57 | * @param string $value |
| 58 | + * @return void |
|
| 53 | 59 | */ |
| 54 | 60 | public function fillRuleOption($option, $value); |
| 55 | 61 | |
@@ -57,11 +63,13 @@ discard block |
||
| 57 | 63 | * @param string $channelName |
| 58 | 64 | * @param string $option |
| 59 | 65 | * @param string $value |
| 66 | + * @return void |
|
| 60 | 67 | */ |
| 61 | 68 | public function fillRuleOptionForChannel($channelName, $option, $value); |
| 62 | 69 | |
| 63 | 70 | /** |
| 64 | 71 | * @param string $actionName |
| 72 | + * @return void |
|
| 65 | 73 | */ |
| 66 | 74 | public function addAction($actionName); |
| 67 | 75 | |
@@ -69,12 +77,14 @@ discard block |
||
| 69 | 77 | * @param string $option |
| 70 | 78 | * @param string $value |
| 71 | 79 | * @param bool $multiple |
| 80 | + * @return void |
|
| 72 | 81 | */ |
| 73 | 82 | public function selectActionOption($option, $value, $multiple = false); |
| 74 | 83 | |
| 75 | 84 | /** |
| 76 | 85 | * @param string $option |
| 77 | 86 | * @param string $value |
| 87 | + * @return void |
|
| 78 | 88 | */ |
| 79 | 89 | public function fillActionOption($option, $value); |
| 80 | 90 | |
@@ -82,25 +92,40 @@ discard block |
||
| 82 | 92 | * @param string $channelName |
| 83 | 93 | * @param string $option |
| 84 | 94 | * @param string $value |
| 95 | + * @return void |
|
| 85 | 96 | */ |
| 86 | 97 | public function fillActionOptionForChannel($channelName, $option, $value); |
| 87 | 98 | |
| 88 | 99 | /** |
| 89 | 100 | * @param string $limit |
| 101 | + * @return void |
|
| 90 | 102 | */ |
| 91 | 103 | public function fillUsageLimit($limit); |
| 92 | 104 | |
| 105 | + /** |
|
| 106 | + * @return void |
|
| 107 | + */ |
|
| 93 | 108 | public function makeExclusive(); |
| 94 | 109 | |
| 110 | + /** |
|
| 111 | + * @return void |
|
| 112 | + */ |
|
| 95 | 113 | public function checkCouponBased(); |
| 96 | 114 | |
| 97 | 115 | /** |
| 98 | 116 | * @param string $name |
| 117 | + * @return void |
|
| 99 | 118 | */ |
| 100 | 119 | public function checkChannel($name); |
| 101 | 120 | |
| 121 | + /** |
|
| 122 | + * @return void |
|
| 123 | + */ |
|
| 102 | 124 | public function setStartsAt(\DateTimeInterface $dateTime); |
| 103 | 125 | |
| 126 | + /** |
|
| 127 | + * @return void |
|
| 128 | + */ |
|
| 104 | 129 | public function setEndsAt(\DateTimeInterface $dateTime); |
| 105 | 130 | |
| 106 | 131 | /** |
@@ -114,6 +139,7 @@ discard block |
||
| 114 | 139 | * @param string $option |
| 115 | 140 | * @param string|string[] $value |
| 116 | 141 | * @param bool $multiple |
| 142 | + * @return void |
|
| 117 | 143 | */ |
| 118 | 144 | public function selectAutoCompleteFilterOption($option, $value, $multiple = false); |
| 119 | 145 | } |
@@ -19,6 +19,7 @@ discard block |
||
| 19 | 19 | { |
| 20 | 20 | /** |
| 21 | 21 | * @param int|null $priority |
| 22 | + * @return void |
|
| 22 | 23 | */ |
| 23 | 24 | public function setPriority($priority); |
| 24 | 25 | |
@@ -29,6 +30,7 @@ discard block |
||
| 29 | 30 | |
| 30 | 31 | /** |
| 31 | 32 | * @param string $name |
| 33 | + * @return void |
|
| 32 | 34 | */ |
| 33 | 35 | public function nameIt($name); |
| 34 | 36 | |
@@ -46,29 +48,45 @@ discard block |
||
| 46 | 48 | |
| 47 | 49 | /** |
| 48 | 50 | * @param string $limit |
| 51 | + * @return void |
|
| 49 | 52 | */ |
| 50 | 53 | public function fillUsageLimit($limit); |
| 51 | 54 | |
| 55 | + /** |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 52 | 58 | public function makeExclusive(); |
| 53 | 59 | |
| 60 | + /** |
|
| 61 | + * @return void |
|
| 62 | + */ |
|
| 54 | 63 | public function checkCouponBased(); |
| 55 | 64 | |
| 56 | 65 | /** |
| 57 | 66 | * @param string $name |
| 67 | + * @return void |
|
| 58 | 68 | */ |
| 59 | 69 | public function checkChannel($name); |
| 60 | 70 | |
| 71 | + /** |
|
| 72 | + * @return void |
|
| 73 | + */ |
|
| 61 | 74 | public function setStartsAt(\DateTimeInterface $dateTime); |
| 62 | 75 | |
| 76 | + /** |
|
| 77 | + * @return void |
|
| 78 | + */ |
|
| 63 | 79 | public function setEndsAt(\DateTimeInterface $dateTime); |
| 64 | 80 | |
| 65 | 81 | /** |
| 66 | 82 | * {@inheritdoc} |
| 83 | + * @return boolean |
|
| 67 | 84 | */ |
| 68 | 85 | public function hasStartsAt(\DateTimeInterface $dateTime); |
| 69 | 86 | |
| 70 | 87 | /** |
| 71 | 88 | * {@inheritdoc} |
| 89 | + * @return boolean |
|
| 72 | 90 | */ |
| 73 | 91 | public function hasEndsAt(\DateTimeInterface $dateTime); |
| 74 | 92 | } |
@@ -19,18 +19,24 @@ |
||
| 19 | 19 | { |
| 20 | 20 | /** |
| 21 | 21 | * @param int $limit |
| 22 | + * @return void |
|
| 22 | 23 | */ |
| 23 | 24 | public function setCustomerUsageLimit($limit); |
| 24 | 25 | |
| 26 | + /** |
|
| 27 | + * @return void |
|
| 28 | + */ |
|
| 25 | 29 | public function setExpiresAt(\DateTimeInterface $date); |
| 26 | 30 | |
| 27 | 31 | /** |
| 28 | 32 | * @param string $code |
| 33 | + * @return void |
|
| 29 | 34 | */ |
| 30 | 35 | public function specifyCode($code); |
| 31 | 36 | |
| 32 | 37 | /** |
| 33 | 38 | * @param int $limit |
| 39 | + * @return void |
|
| 34 | 40 | */ |
| 35 | 41 | public function setUsageLimit($limit); |
| 36 | 42 | } |
@@ -38,22 +38,31 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public function checkGenerationValidation($message); |
| 40 | 40 | |
| 41 | + /** |
|
| 42 | + * @return void |
|
| 43 | + */ |
|
| 41 | 44 | public function generate(); |
| 42 | 45 | |
| 43 | 46 | /** |
| 44 | 47 | * @param int $amount |
| 48 | + * @return void |
|
| 45 | 49 | */ |
| 46 | 50 | public function specifyAmount($amount); |
| 47 | 51 | |
| 48 | 52 | /** |
| 49 | 53 | * @param int $codeLength |
| 54 | + * @return void |
|
| 50 | 55 | */ |
| 51 | 56 | public function specifyCodeLength($codeLength); |
| 52 | 57 | |
| 58 | + /** |
|
| 59 | + * @return void |
|
| 60 | + */ |
|
| 53 | 61 | public function setExpiresAt(\DateTimeInterface $date); |
| 54 | 62 | |
| 55 | 63 | /** |
| 56 | 64 | * @param int $limit |
| 65 | + * @return void |
|
| 57 | 66 | */ |
| 58 | 67 | public function setUsageLimit($limit); |
| 59 | 68 | } |
@@ -24,13 +24,18 @@ |
||
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * @param int $limit |
| 27 | + * @return void |
|
| 27 | 28 | */ |
| 28 | 29 | public function setCustomerUsageLimit($limit); |
| 29 | 30 | |
| 31 | + /** |
|
| 32 | + * @return void |
|
| 33 | + */ |
|
| 30 | 34 | public function setExpiresAt(\DateTimeInterface $date); |
| 31 | 35 | |
| 32 | 36 | /** |
| 33 | 37 | * @param int $limit |
| 38 | + * @return void |
|
| 34 | 39 | */ |
| 35 | 40 | public function setUsageLimit($limit); |
| 36 | 41 | } |
@@ -22,9 +22,13 @@ discard block |
||
| 22 | 22 | /** |
| 23 | 23 | * @param string $description |
| 24 | 24 | * @param string $languageCode |
| 25 | + * @return void |
|
| 25 | 26 | */ |
| 26 | 27 | public function describeItAs($description, $languageCode); |
| 27 | 28 | |
| 29 | + /** |
|
| 30 | + * @return void |
|
| 31 | + */ |
|
| 28 | 32 | public function chooseParent(TaxonInterface $taxon); |
| 29 | 33 | |
| 30 | 34 | /** |
@@ -35,18 +39,21 @@ discard block |
||
| 35 | 39 | /** |
| 36 | 40 | * @param string $name |
| 37 | 41 | * @param string $languageCode |
| 42 | + * @return void |
|
| 38 | 43 | */ |
| 39 | 44 | public function nameIt($name, $languageCode); |
| 40 | 45 | |
| 41 | 46 | /** |
| 42 | 47 | * @param string $slug |
| 43 | 48 | * @param string $languageCode |
| 49 | + * @return void |
|
| 44 | 50 | */ |
| 45 | 51 | public function specifySlug($slug, $languageCode); |
| 46 | 52 | |
| 47 | 53 | /** |
| 48 | 54 | * @param string $path |
| 49 | 55 | * @param string $type |
| 56 | + * @return void |
|
| 50 | 57 | */ |
| 51 | 58 | public function attachImage($path, $type = null); |
| 52 | 59 | |
@@ -66,13 +73,18 @@ discard block |
||
| 66 | 73 | |
| 67 | 74 | /** |
| 68 | 75 | * @param string $type |
| 76 | + * @return void |
|
| 69 | 77 | */ |
| 70 | 78 | public function removeImageWithType($type); |
| 71 | 79 | |
| 80 | + /** |
|
| 81 | + * @return void |
|
| 82 | + */ |
|
| 72 | 83 | public function removeFirstImage(); |
| 73 | 84 | |
| 74 | 85 | /** |
| 75 | 86 | * @param string $languageCode |
| 87 | + * @return void |
|
| 76 | 88 | */ |
| 77 | 89 | public function enableSlugModification($languageCode = 'en_US'); |
| 78 | 90 | |
@@ -84,11 +96,13 @@ discard block |
||
| 84 | 96 | /** |
| 85 | 97 | * @param string $type |
| 86 | 98 | * @param string $path |
| 99 | + * @return void |
|
| 87 | 100 | */ |
| 88 | 101 | public function changeImageWithType($type, $path); |
| 89 | 102 | |
| 90 | 103 | /** |
| 91 | 104 | * @param string $type |
| 105 | + * @return void |
|
| 92 | 106 | */ |
| 93 | 107 | public function modifyFirstImageType($type); |
| 94 | 108 | |
@@ -122,6 +136,7 @@ discard block |
||
| 122 | 136 | |
| 123 | 137 | /** |
| 124 | 138 | * @param string $locale |
| 139 | + * @return void |
|
| 125 | 140 | */ |
| 126 | 141 | public function activateLanguageTab($locale); |
| 127 | 142 | } |