Completed
Push — unused-compiler-pass ( 93ebf5 )
by Kamil
31:23 queued 11:08
created
src/Sylius/Behat/Page/Shop/Account/AddressBook/UpdatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -20,24 +20,31 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $title
23
+     * @return void
23 24
      */
24 25
     public function titleReview($title);
25 26
 
26 27
     /**
27 28
      * @param string $comment
29
+     * @return void
28 30
      */
29 31
     public function setComment($comment);
30 32
 
31 33
     /**
32 34
      * @param string $author
35
+     * @return void
33 36
      */
34 37
     public function setAuthor($author);
35 38
 
36 39
     /**
37 40
      * @param int $rate
41
+     * @return void
38 42
      */
39 43
     public function rateReview($rate);
40 44
 
45
+    /**
46
+     * @return void
47
+     */
41 48
     public function submitReview();
42 49
 
43 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SharedStorageInterface.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,11 +33,12 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * @param string $key
35 35
      * @param mixed $resource
36
+     * @return void
36 37
      */
37 38
     public function set($key, $resource);
38 39
 
39 40
     /**
40
-     * @return mixed
41
+     * @return string
41 42
      */
42 43
     public function getLatestResource();
43 44
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
      * @param array $clipboard
46 47
      *
47 48
      * @throws \RuntimeException
49
+     * @return void
48 50
      */
49 51
     public function setClipboard(array $clipboard);
50 52
 }
Please login to merge, or discard this patch.
ReviewBundle/DependencyInjection/Compiler/RegisterReviewFactoryPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
     public function process(ContainerBuilder $container)
28 28
     {
29 29
         foreach ($container->getParameter('sylius.review.subjects') as $subject => $configuration) {
30
-            $factory = $container->findDefinition('sylius.factory.'.$subject.'_review');
30
+            $factory = $container->findDefinition('sylius.factory.' . $subject . '_review');
31 31
             $reviewFactoryDefinition = new Definition(ReviewFactory::class);
32 32
 
33
-            $reviewFactory = $container->setDefinition(sprintf('sylius.factory.'.$subject.'_review'), $reviewFactoryDefinition);
33
+            $reviewFactory = $container->setDefinition(sprintf('sylius.factory.' . $subject . '_review'), $reviewFactoryDefinition);
34 34
             $reviewFactory->addArgument($factory);
35 35
         }
36 36
     }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/AddressBook/IndexPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@  discard block
 block discarded – undo
39 39
      * Sets all option values.
40 40
      *
41 41
      * @param Collection $optionValues
42
+     * @return void
42 43
      */
43 44
     public function setValues(Collection $optionValues);
44 45
 
@@ -46,6 +47,7 @@  discard block
 block discarded – undo
46 47
      * Adds option value.
47 48
      *
48 49
      * @param OptionValueInterface $optionValue
50
+     * @return void
49 51
      */
50 52
     public function addValue(OptionValueInterface $optionValue);
51 53
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
      * Removes option value.
54 56
      *
55 57
      * @param OptionValueInterface $optionValue
58
+     * @return void
56 59
      */
57 60
     public function removeValue(OptionValueInterface $optionValue);
58 61
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Customer/CustomerAddressAdderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Taxonomy/Model/TaxonInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * @param  string $email
41
+     * @return void
41 42
      */
42 43
     public function setEmail($email);
43 44
 
@@ -50,6 +51,7 @@  discard block
 block discarded – undo
50 51
 
51 52
     /**
52 53
      * @param  string $emailCanonical
54
+     * @return void
53 55
      */
54 56
     public function setEmailCanonical($emailCanonical);
55 57
 
@@ -67,6 +69,7 @@  discard block
 block discarded – undo
67 69
 
68 70
     /**
69 71
      * @param  string $firstName
72
+     * @return void
70 73
      */
71 74
     public function setFirstName($firstName);
72 75
 
@@ -77,6 +80,7 @@  discard block
 block discarded – undo
77 80
 
78 81
     /**
79 82
      * @param  string $lastName
83
+     * @return void
80 84
      */
81 85
     public function setLastName($lastName);
82 86
 
@@ -87,6 +91,7 @@  discard block
 block discarded – undo
87 91
 
88 92
     /**
89 93
      * @param  \DateTime $birthday
94
+     * @return void
90 95
      */
91 96
     public function setBirthday(\DateTime $birthday = null);
92 97
 
@@ -99,6 +104,7 @@  discard block
 block discarded – undo
99 104
      * You should use interface constants for that.
100 105
      *
101 106
      * @param  string $gender
107
+     * @return void
102 108
      */
103 109
     public function setGender($gender);
104 110
 
@@ -119,6 +125,7 @@  discard block
 block discarded – undo
119 125
 
120 126
     /**
121 127
      * @param string $phoneNumber
128
+     * @return void
122 129
      */
123 130
     public function setPhoneNumber($phoneNumber);
124 131
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/ShowPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,8 +20,12 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $shippingMethod
23
+     * @return void
23 24
      */
24 25
     public function selectShippingMethod($shippingMethod);
25 26
 
27
+    /**
28
+     * @return void
29
+     */
26 30
     public function continueCheckout();
27 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAssociationTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Taxonomy/Model/TaxonTranslationInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param OptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(OptionInterface $option = null);
32 33
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
      * Set internal value.
42 43
      *
43 44
      * @param string $value
45
+     * @return void
44 46
      */
45 47
     public function setValue($value);
46 48
 
Please login to merge, or discard this patch.