Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
src/Sylius/Component/Core/Model/ProductVariantInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param float $weight
38
+     * @return void
38 39
      */
39 40
     public function setWeight($weight);
40 41
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
 
46 47
     /**
47 48
      * @param float $width
49
+     * @return void
48 50
      */
49 51
     public function setWidth($width);
50 52
 
@@ -55,6 +57,7 @@  discard block
 block discarded – undo
55 57
 
56 58
     /**
57 59
      * @param float $height
60
+     * @return void
58 61
      */
59 62
     public function setHeight($height);
60 63
 
@@ -65,16 +68,19 @@  discard block
 block discarded – undo
65 68
 
66 69
     /**
67 70
      * @param float $depth
71
+     * @return void
68 72
      */
69 73
     public function setDepth($depth);
70 74
 
71 75
     /**
72 76
      * @param TaxCategoryInterface $category
77
+     * @return void
73 78
      */
74 79
     public function setTaxCategory(TaxCategoryInterface $category = null);
75 80
 
76 81
     /**
77 82
      * @param ShippingCategoryInterface $shippingCategory
83
+     * @return void
78 84
      */
79 85
     public function setShippingCategory(ShippingCategoryInterface $shippingCategory);
80 86
 
@@ -106,11 +112,13 @@  discard block
 block discarded – undo
106 112
 
107 113
     /**
108 114
      * @param ChannelPricingInterface $channelPricing
115
+     * @return void
109 116
      */
110 117
     public function addChannelPricing(ChannelPricingInterface $channelPricing);
111 118
 
112 119
     /**
113 120
      * @param ChannelPricingInterface $channelPricing
121
+     * @return void
114 122
      */
115 123
     public function removeChannelPricing(ChannelPricingInterface $channelPricing);
116 124
 
@@ -121,6 +129,7 @@  discard block
 block discarded – undo
121 129
 
122 130
     /**
123 131
      * @param bool $shippingRequired
132
+     * @return void
124 133
      */
125 134
     public function setShippingRequired($shippingRequired);
126 135
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PaymentMethod/CreatePageInterface.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -18,59 +18,76 @@
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
25
+
26
+    /**
27
+     * @return void
28
+     */
22 29
     public function disable();
23 30
 
24 31
     /**
25 32
      * @param string $name
26 33
      * @param string $languageCode
34
+     * @return void
27 35
      */
28 36
     public function nameIt($name, $languageCode);
29 37
 
30 38
     /**
31 39
      * @param string $code
40
+     * @return void
32 41
      */
33 42
     public function specifyCode($code);
34 43
 
35 44
     /**
36 45
      * @param string $channelName
46
+     * @return void
37 47
      */
38 48
     public function checkChannel($channelName);
39 49
 
40 50
     /**
41 51
      * @param string $description
42 52
      * @param string $languageCode
53
+     * @return void
43 54
      */
44 55
     public function describeIt($description, $languageCode);
45 56
 
46 57
     /**
47 58
      * @param string $instructions
48 59
      * @param string $languageCode
60
+     * @return void
49 61
      */
50 62
     public function setInstructions($instructions, $languageCode);
51 63
 
52 64
     /**
53 65
      * @param string $username
66
+     * @return void
54 67
      */
55 68
     public function setPaypalGatewayUsername($username);
56 69
 
57 70
     /**
58 71
      * @param string $password
72
+     * @return void
59 73
      */
60 74
     public function setPaypalGatewayPassword($password);
61 75
 
62 76
     /**
63 77
      * @param string $signature
78
+     * @return void
64 79
      */
65 80
     public function setPaypalGatewaySignature($signature);
66 81
 
67 82
     /**
68 83
      * @param string $secretKey
84
+     * @return void
69 85
      */
70 86
     public function setStripeSecretKey($secretKey);
71 87
 
72 88
     /**
73 89
      * @param string $publishableKey
90
+     * @return void
74 91
      */
75 92
     public function setStripePublishableKey($publishableKey);
76 93
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PaymentMethod/UpdatePageInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -18,27 +18,38 @@
 block discarded – undo
18 18
  */
19 19
 interface UpdatePageInterface extends BaseUpdatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
25
+
26
+    /**
27
+     * @return void
28
+     */
22 29
     public function disable();
23 30
 
24 31
     /**
25 32
      * @param string $name
26 33
      * @param string $languageCode
34
+     * @return void
27 35
      */
28 36
     public function nameIt($name, $languageCode);
29 37
 
30 38
     /**
31 39
      * @param string $username
40
+     * @return void
32 41
      */
33 42
     public function setPaypalGatewayUsername($username);
34 43
 
35 44
     /**
36 45
      * @param string $password
46
+     * @return void
37 47
      */
38 48
     public function setPaypalGatewayPassword($password);
39 49
 
40 50
     /**
41 51
      * @param string $signature
52
+     * @return void
42 53
      */
43 54
     public function setPaypalGatewaySignature($signature);
44 55
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductAttribute/CreatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,12 +20,14 @@  discard block
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $code
23
+     * @return void
23 24
      */
24 25
     public function specifyCode($code);
25 26
 
26 27
     /**
27 28
      * @param string $name
28 29
      * @param string $language
30
+     * @return void
29 31
      */
30 32
     public function nameIt($name, $language);
31 33
 
@@ -36,6 +38,7 @@  discard block
 block discarded – undo
36 38
 
37 39
     /**
38 40
      * @param string $value
41
+     * @return void
39 42
      */
40 43
     public function addAttributeValue($value);
41 44
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/PaymentMethodInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param GatewayConfigInterface $gateway
25
+     * @return void
25 26
      */
26 27
     public function setGatewayConfig(GatewayConfigInterface $gateway);
27 28
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Doctrine/ORM/AssociationHydrator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param mixed $subjects
53
-     * @param array|string[] $associationsPaths
53
+     * @param string[] $associationsPaths
54 54
      */
55 55
     public function hydrateAssociations($subjects, array $associationsPaths)
56 56
     {
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/Controller/ResourceUpdateHandlerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param ResourceInterface $resource
24 24
      * @param RequestConfiguration $requestConfiguration
25 25
      * @param ObjectManager $manager
26
+     * @return void
26 27
      */
27 28
     public function handle(
28 29
         ResourceInterface $resource,
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelPricingInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductVariantInterface|null $productVariant
30
+     * @return void
30 31
      */
31 32
     public function setProductVariant(ProductVariantInterface $productVariant = null);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param int $price
41
+     * @return void
40 42
      */
41 43
     public function setPrice($price);
42 44
 
@@ -47,6 +49,7 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param string $channelCode
52
+     * @return void
50 53
      */
51 54
     public function setChannelCode($channelCode);
52 55
 
@@ -57,6 +60,7 @@  discard block
 block discarded – undo
57 60
 
58 61
     /**
59 62
      * @param int $originalPrice
63
+     * @return void
60 64
      */
61 65
     public function setOriginalPrice($originalPrice);
62 66
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductImageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -30,11 +30,13 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param ProductVariantInterface $productVariant
33
+     * @return void
33 34
      */
34 35
     public function addProductVariant(ProductVariantInterface $productVariant);
35 36
 
36 37
     /**
37 38
      * @param ProductVariantInterface $productVariant
39
+     * @return void
38 40
      */
39 41
     public function removeProductVariant(ProductVariantInterface $productVariant);
40 42
 
Please login to merge, or discard this patch.