@@ -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 | } |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | interface PrioritizedServiceRegistryInterface |
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | - * @return iterable |
|
| 22 | + * @return \Zend\Stdlib\PriorityQueue |
|
| 23 | 23 | */ |
| 24 | 24 | public function all(): iterable; |
| 25 | 25 | |
@@ -29,6 +29,7 @@ discard block |
||
| 29 | 29 | * |
| 30 | 30 | * @throws ExistingServiceException |
| 31 | 31 | * @throws \InvalidArgumentException |
| 32 | + * @return void |
|
| 32 | 33 | */ |
| 33 | 34 | public function register($service, int $priority = 0): void; |
| 34 | 35 | |
@@ -36,6 +37,7 @@ discard block |
||
| 36 | 37 | * @param object $service |
| 37 | 38 | * |
| 38 | 39 | * @throws NonExistingServiceException |
| 40 | + * @return void |
|
| 39 | 41 | */ |
| 40 | 42 | public function unregister($service): void; |
| 41 | 43 | |
@@ -29,6 +29,7 @@ discard block |
||
| 29 | 29 | * |
| 30 | 30 | * @throws ExistingServiceException |
| 31 | 31 | * @throws \InvalidArgumentException |
| 32 | + * @return void |
|
| 32 | 33 | */ |
| 33 | 34 | public function register(string $identifier, $service): void; |
| 34 | 35 | |
@@ -36,6 +37,7 @@ discard block |
||
| 36 | 37 | * @param string $identifier |
| 37 | 38 | * |
| 38 | 39 | * @throws NonExistingServiceException |
| 40 | + * @return void |
|
| 39 | 41 | */ |
| 40 | 42 | public function unregister(string $identifier): void; |
| 41 | 43 | |