@@ -37,6 +37,7 @@ |
||
| 37 | 37 | * @Transform /^taxon with "([^"]+)" name/ |
| 38 | 38 | * @Transform /^taxon "([^"]+)"$/ |
| 39 | 39 | * @Transform :taxon |
| 40 | + * @param string $name |
|
| 40 | 41 | */ |
| 41 | 42 | public function getTaxonByName($name) |
| 42 | 43 | { |
@@ -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,9 +45,18 @@ 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 | |
| 53 | + /** |
|
| 54 | + * @return void |
|
| 55 | + */ |
|
| 44 | 56 | public function specifyCurrentStock(int $amount): void; |
| 45 | 57 | |
| 58 | + /** |
|
| 59 | + * @return void |
|
| 60 | + */ |
|
| 46 | 61 | public function specifyPrice(int $price): void; |
| 47 | 62 | } |