Completed
Push — symfony-3.3 ( e8b928...951e26 )
by Kamil
24:54 queued 03:04
created
src/Sylius/Component/Payment/Model/PaymentMethodInterface.php 1 patch
Doc Comments   +5 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 $name
36
+     * @return void
36 37
      */
37 38
     public function setName($name);
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,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param string $instructions
58
+     * @return void
56 59
      */
57 60
     public function setInstructions($instructions);
58 61
 
@@ -63,6 +66,7 @@  discard block
 block discarded – undo
63 66
 
64 67
     /**
65 68
      * @param string $environment
69
+     * @return void
66 70
      */
67 71
     public function setEnvironment($environment);
68 72
 
@@ -73,6 +77,7 @@  discard block
 block discarded – undo
73 77
 
74 78
     /**
75 79
      * @param int $position
80
+     * @return void
76 81
      */
77 82
     public function setPosition($position);
78 83
 }
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.
src/Sylius/Bundle/ResourceBundle/Controller/FlashHelperInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,18 +23,21 @@
 block discarded – undo
23 23
      * @param RequestConfiguration $requestConfiguration
24 24
      * @param string $actionName
25 25
      * @param ResourceInterface|null $resource
26
+     * @return void
26 27
      */
27 28
     public function addSuccessFlash(RequestConfiguration $requestConfiguration, $actionName, ResourceInterface $resource = null);
28 29
 
29 30
     /**
30 31
      * @param RequestConfiguration $requestConfiguration
31 32
      * @param string $actionName
33
+     * @return void
32 34
      */
33 35
     public function addErrorFlash(RequestConfiguration $requestConfiguration, $actionName);
34 36
 
35 37
     /**
36 38
      * @param RequestConfiguration $requestConfiguration
37 39
      * @param ResourceControllerEvent $event
40
+     * @return void
38 41
      */
39 42
     public function addFlashFromEvent(RequestConfiguration $requestConfiguration, ResourceControllerEvent $event);
40 43
 }
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/Resource/Model/VersionedInterface.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 int $version
26
+     * @return void
26 27
      */
27 28
     public function setVersion($version);
28 29
 }
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.
Sylius/Bundle/AdminBundle/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.
src/Sylius/Bundle/ShopBundle/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.