Completed
Push — scalar-types/registry ( 38a5a0 )
by Kamil
75:54 queued 51:59
created
src/Sylius/Bundle/ThemeBundle/Loader/CircularDependencyCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param ThemeInterface $theme
23 23
      *
24 24
      * @throws CircularDependencyFoundException
25
+     * @return void
25 26
      */
26 27
     public function check(ThemeInterface $theme);
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Loader/CircularDependencyFoundException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @param array $themes
40
+     * @param ThemeInterface[] $themes
41 41
      *
42 42
      * @return array
43 43
      */
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Model/ThemeInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param string $title
36
+     * @return void
36 37
      */
37 38
     public function setTitle($title);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param string $description
47
+     * @return void
46 48
      */
47 49
     public function setDescription($description);
48 50
 
@@ -53,11 +55,13 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param ThemeAuthor $author
58
+     * @return void
56 59
      */
57 60
     public function addAuthor(ThemeAuthor $author);
58 61
 
59 62
     /**
60 63
      * @param ThemeAuthor $author
64
+     * @return void
61 65
      */
62 66
     public function removeAuthor(ThemeAuthor $author);
63 67
 
@@ -68,11 +72,13 @@  discard block
 block discarded – undo
68 72
 
69 73
     /**
70 74
      * @param ThemeInterface $theme
75
+     * @return void
71 76
      */
72 77
     public function addParent(ThemeInterface $theme);
73 78
 
74 79
     /**
75 80
      * @param ThemeInterface $theme
81
+     * @return void
76 82
      */
77 83
     public function removeParent(ThemeInterface $theme);
78 84
 
@@ -83,11 +89,13 @@  discard block
 block discarded – undo
83 89
 
84 90
     /**
85 91
      * @param ThemeScreenshot $screenshot
92
+     * @return void
86 93
      */
87 94
     public function addScreenshot(ThemeScreenshot $screenshot);
88 95
 
89 96
     /**
90 97
      * @param ThemeScreenshot $screenshot
98
+     * @return void
91 99
      */
92 100
     public function removeScreenshot(ThemeScreenshot $screenshot);
93 101
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/TranslationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     }
29 29
 
30 30
     /**
31
-     * @return array
31
+     * @return string[]
32 32
      */
33 33
     protected function getTranslationsLines()
34 34
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/Reloader/UserReloaderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param UserInterface $user
23
+     * @return void
23 24
      */
24 25
     public function reloadUser(UserInterface $user);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/AttributeType/AttributeTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
      * @param AttributeValueInterface $attributeValue
34 34
      * @param ExecutionContextInterface $context
35 35
      * @param array $configuration
36
+     * @return void
36 37
      */
37 38
     public function validate(AttributeValueInterface $attributeValue, ExecutionContextInterface $context, array $configuration);
38 39
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderItemInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param ProductVariantInterface $variant
33
+     * @return void
33 34
      */
34 35
     public function setVariant(ProductVariantInterface $variant);
35 36
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param string $shortDescription
26
+     * @return void
26 27
      */
27 28
     public function setShortDescription($shortDescription);
28 29
 }
Please login to merge, or discard this patch.
Core/Promotion/Applicator/UnitsPromotionAdjustmentsApplicatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param OrderInterface $order
24 24
      * @param PromotionInterface $promotion
25 25
      * @param array $adjustmentsAmounts
26
+     * @return void
26 27
      */
27 28
     public function apply(OrderInterface $order, PromotionInterface $promotion, array $adjustmentsAmounts);
28 29
 }
Please login to merge, or discard this patch.