Completed
Push — scalar-types/customer ( db66a3...ff9fd6 )
by Kamil
24:23
created
src/Sylius/Component/Locale/Context/LocaleNotFoundException.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Model/LocalesAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -34,11 +34,13 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/PrioritizedServiceRegistryInterface.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/ServiceRegistryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.