Completed
Push — snake-case-tests ( 55729f )
by Kamil
87:29 queued 51:35
created
Form/DataTransformer/ProductsToProductAssociationsTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
 
159 159
     /**
160 160
      * @param ProductAssociationInterface $productAssociation
161
-     * @param string $productIds
161
+     * @param string $productCodes
162 162
      */
163 163
     private function setAssociatedProductsByProductCodes(ProductAssociationInterface $productAssociation, $productCodes)
164 164
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ImageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $type
29
+     * @return void
29 30
      */
30 31
     public function setType($type);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param \SplFileInfo $file
40
+     * @return void
39 41
      */
40 42
     public function setFile(\SplFileInfo $file);
41 43
 
@@ -51,6 +53,7 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param string $path
56
+     * @return void
54 57
      */
55 58
     public function setPath($path);
56 59
 
@@ -61,6 +64,7 @@  discard block
 block discarded – undo
61 64
 
62 65
     /**
63 66
      * @param ImageAwareInterface|null $owner
67
+     * @return void
64 68
      */
65 69
     public function setOwner(ImageAwareInterface $owner = null);
66 70
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @param string $name
43
+     * @return void
43 44
      */
44 45
     public function setName($name);
45 46
 
@@ -50,6 +51,7 @@  discard block
 block discarded – undo
50 51
 
51 52
     /**
52 53
      * @param string $description
54
+     * @return void
53 55
      */
54 56
     public function setDescription($description);
55 57
 
@@ -60,6 +62,7 @@  discard block
 block discarded – undo
60 62
 
61 63
     /**
62 64
      * @param string $metaKeywords
65
+     * @return void
63 66
      */
64 67
     public function setMetaKeywords($metaKeywords);
65 68
 
@@ -70,6 +73,7 @@  discard block
 block discarded – undo
70 73
 
71 74
     /**
72 75
      * @param string $metaDescription
76
+     * @return void
73 77
      */
74 78
     public function setMetaDescription($metaDescription);
75 79
 
@@ -85,11 +89,13 @@  discard block
 block discarded – undo
85 89
 
86 90
     /**
87 91
      * @param ProductVariantInterface $variant
92
+     * @return void
88 93
      */
89 94
     public function addVariant(ProductVariantInterface $variant);
90 95
 
91 96
     /**
92 97
      * @param ProductVariantInterface $variant
98
+     * @return void
93 99
      */
94 100
     public function removeVariant(ProductVariantInterface $variant);
95 101
 
@@ -112,11 +118,13 @@  discard block
 block discarded – undo
112 118
 
113 119
     /**
114 120
      * @param ProductOptionInterface $option
121
+     * @return void
115 122
      */
116 123
     public function addOption(ProductOptionInterface $option);
117 124
 
118 125
     /**
119 126
      * @param ProductOptionInterface $option
127
+     * @return void
120 128
      */
121 129
     public function removeOption(ProductOptionInterface $option);
122 130
 
@@ -129,6 +137,7 @@  discard block
 block discarded – undo
129 137
 
130 138
     /**
131 139
      * @param ProductAssociationInterface $association
140
+     * @return void
132 141
      */
133 142
     public function addAssociation(ProductAssociationInterface $association);
134 143
 
@@ -139,6 +148,7 @@  discard block
 block discarded – undo
139 148
 
140 149
     /**
141 150
      * @param ProductAssociationInterface $association
151
+     * @return void
142 152
      */
143 153
     public function removeAssociation(ProductAssociationInterface $association);
144 154
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/RedirectHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -82,6 +82,7 @@
 block discarded – undo
82 82
 
83 83
     /**
84 84
      * {@inheritdoc}
85
+     * @param string $url
85 86
      */
86 87
     public function redirect(RequestConfiguration $configuration, $url, $status = 302)
87 88
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Storage/StorageInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,12 +33,13 @@
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param string $name
36
-     * @param mixed $value
36
+     * @param string $value
37 37
      */
38 38
     public function set($name, $value);
39 39
 
40 40
     /**
41 41
      * @param string $name
42
+     * @return void
42 43
      */
43 44
     public function remove($name);
44 45
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/EmailManager/ContactEmailManagerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * @param array $data
21 21
      * @param array $recipients
22
+     * @return void
22 23
      */
23 24
     public function sendContactRequest(array $data, array $recipients);
24 25
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/EmailManager/OrderEmailManagerInterface.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 OrderInterface $order
23
+     * @return void
23 24
      */
24 25
     public function sendConfirmationEmail(OrderInterface $order);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/EmailManager/ShipmentEmailManagerInterface.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 ShipmentInterface $shipment
23
+     * @return void
23 24
      */
24 25
     public function sendConfirmationEmail(ShipmentInterface $shipment);
25 26
 }
Please login to merge, or discard this patch.
CoreBundle/Validator/Constraints/OrderProductEligibilityValidator.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -23,9 +23,6 @@
 block discarded – undo
23 23
 final class OrderProductEligibilityValidator extends ConstraintValidator
24 24
 {
25 25
     /**
26
-     * @param OrderInterface $value
27
-     *
28
-     * {@inheritdoc}
29 26
      */
30 27
     public function validate($order, Constraint $constraint)
31 28
     {
Please login to merge, or discard this patch.