@@ -25,6 +25,7 @@ |
||
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * @param ChannelInterface|null $channel |
| 28 | + * @return void |
|
| 28 | 29 | */ |
| 29 | 30 | public function setChannel(?ChannelInterface $channel): void; |
| 30 | 31 | } |
@@ -34,6 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * @param string|null $name |
| 37 | + * @return void |
|
| 37 | 38 | */ |
| 38 | 39 | public function setName(?string $name): void; |
| 39 | 40 | |
@@ -44,6 +45,7 @@ discard block |
||
| 44 | 45 | |
| 45 | 46 | /** |
| 46 | 47 | * @param string|null $description |
| 48 | + * @return void |
|
| 47 | 49 | */ |
| 48 | 50 | public function setDescription(?string $description): void; |
| 49 | 51 | |
@@ -54,6 +56,7 @@ discard block |
||
| 54 | 56 | |
| 55 | 57 | /** |
| 56 | 58 | * @param string|null $hostname |
| 59 | + * @return void |
|
| 57 | 60 | */ |
| 58 | 61 | public function setHostname(?string $hostname): void; |
| 59 | 62 | |
@@ -64,6 +67,7 @@ discard block |
||
| 64 | 67 | |
| 65 | 68 | /** |
| 66 | 69 | * @param string|null $color |
| 70 | + * @return void |
|
| 67 | 71 | */ |
| 68 | 72 | public function setColor(?string $color): void; |
| 69 | 73 | } |
@@ -34,11 +34,13 @@ |
||
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * @param ChannelInterface $channel |
| 37 | + * @return void |
|
| 37 | 38 | */ |
| 38 | 39 | public function addChannel(ChannelInterface $channel): void; |
| 39 | 40 | |
| 40 | 41 | /** |
| 41 | 42 | * @param ChannelInterface $channel |
| 43 | + * @return void |
|
| 42 | 44 | */ |
| 43 | 45 | public function removeChannel(ChannelInterface $channel): void; |
| 44 | 46 | } |
@@ -20,6 +20,8 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * {@inheritdoc} |
| 23 | + * @param string $message |
|
| 24 | + * @param CurrencyNotFoundException $previousException |
|
| 23 | 25 | */ |
| 24 | 26 | public function __construct(?string $message = null, ?\Exception $previousException = null) |
| 25 | 27 | { |
@@ -34,11 +34,13 @@ |
||
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * @param CurrencyInterface $currency |
| 37 | + * @return void |
|
| 37 | 38 | */ |
| 38 | 39 | public function addCurrency(CurrencyInterface $currency): void; |
| 39 | 40 | |
| 40 | 41 | /** |
| 41 | 42 | * @param CurrencyInterface $currency |
| 43 | + * @return void |
|
| 42 | 44 | */ |
| 43 | 45 | public function removeCurrency(CurrencyInterface $currency): void; |
| 44 | 46 | } |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param float|null $ratio |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setRatio(?float $ratio); |
| 32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
| 37 | 38 | |
| 38 | 39 | /** |
| 39 | 40 | * @param CurrencyInterface $currency |
| 41 | + * @return void |
|
| 40 | 42 | */ |
| 41 | 43 | public function setSourceCurrency(CurrencyInterface $currency): void; |
| 42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
| 47 | 49 | |
| 48 | 50 | /** |
| 49 | 51 | * @param CurrencyInterface $currency |
| 52 | + * @return void |
|
| 50 | 53 | */ |
| 51 | 54 | public function setTargetCurrency(CurrencyInterface $currency): void; |
| 52 | 55 | } |
@@ -20,6 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * {@inheritdoc} |
| 23 | + * @param string $message |
|
| 23 | 24 | */ |
| 24 | 25 | public function __construct(?string $message = null, \Exception $previousException = null) |
| 25 | 26 | { |
@@ -38,7 +39,7 @@ discard block |
||
| 38 | 39 | |
| 39 | 40 | /** |
| 40 | 41 | * @param string $localeCode |
| 41 | - * @param array $availableLocalesCodes |
|
| 42 | + * @param string[] $availableLocalesCodes |
|
| 42 | 43 | * |
| 43 | 44 | * @return self |
| 44 | 45 | */ |
@@ -34,11 +34,13 @@ |
||
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * @param LocaleInterface $locale |
| 37 | + * @return void |
|
| 37 | 38 | */ |
| 38 | 39 | public function addLocale(LocaleInterface $locale): void; |
| 39 | 40 | |
| 40 | 41 | /** |
| 41 | 42 | * @param LocaleInterface $locale |
| 43 | + * @return void |
|
| 42 | 44 | */ |
| 43 | 45 | public function removeLocale(LocaleInterface $locale): void; |
| 44 | 46 | } |
@@ -25,6 +25,7 @@ |
||
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * @param CustomerInterface|null $customer |
| 28 | + * @return void |
|
| 28 | 29 | */ |
| 29 | 30 | public function setCustomer(?CustomerInterface $customer): void; |
| 30 | 31 | } |