Completed
Push — 1.3 ( 398444...af1b9f )
by Kamil
27:59
created
src/Sylius/Behat/Page/Admin/Currency/UpdatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -17,8 +17,14 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable();
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable();
23 29
 
24 30
     /**
@@ -33,6 +39,7 @@  discard block
 block discarded – undo
33 39
 
34 40
     /**
35 41
      * @param string $exchangeRate
42
+     * @return void
36 43
      */
37 44
     public function changeExchangeRate($exchangeRate);
38 45
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/UpdatePageInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -17,8 +17,14 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable();
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable();
23 29
 
24 30
     /**
@@ -28,6 +34,7 @@  discard block
 block discarded – undo
28 34
 
29 35
     /**
30 36
      * @param string $firstName
37
+     * @return void
31 38
      */
32 39
     public function changeFirstName($firstName);
33 40
 
@@ -38,6 +45,7 @@  discard block
 block discarded – undo
38 45
 
39 46
     /**
40 47
      * @param string $lastName
48
+     * @return void
41 49
      */
42 50
     public function changeLastName($lastName);
43 51
 
@@ -48,11 +56,13 @@  discard block
 block discarded – undo
48 56
 
49 57
     /**
50 58
      * @param string $email
59
+     * @return void
51 60
      */
52 61
     public function changeEmail($email);
53 62
 
54 63
     /**
55 64
      * @param string $password
65
+     * @return void
56 66
      */
57 67
     public function changePassword($password);
58 68
 
@@ -61,6 +71,9 @@  discard block
 block discarded – undo
61 71
      */
62 72
     public function getPassword();
63 73
 
74
+    /**
75
+     * @return void
76
+     */
64 77
     public function subscribeToTheNewsletter();
65 78
 
66 79
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PaymentMethod/CreatePageInterface.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -17,60 +17,76 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable();
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable();
23 29
 
24 30
     /**
25 31
      * @param string $name
26 32
      * @param string $languageCode
33
+     * @return void
27 34
      */
28 35
     public function nameIt($name, $languageCode);
29 36
 
30 37
     /**
31 38
      * @param string $code
39
+     * @return void
32 40
      */
33 41
     public function specifyCode($code);
34 42
 
35 43
     /**
36 44
      * @param string $channelName
45
+     * @return void
37 46
      */
38 47
     public function checkChannel($channelName);
39 48
 
40 49
     /**
41 50
      * @param string $description
42 51
      * @param string $languageCode
52
+     * @return void
43 53
      */
44 54
     public function describeIt($description, $languageCode);
45 55
 
46 56
     /**
47 57
      * @param string $instructions
48 58
      * @param string $languageCode
59
+     * @return void
49 60
      */
50 61
     public function setInstructions($instructions, $languageCode);
51 62
 
52 63
     /**
53 64
      * @param string $username
65
+     * @return void
54 66
      */
55 67
     public function setPaypalGatewayUsername($username);
56 68
 
57 69
     /**
58 70
      * @param string $password
71
+     * @return void
59 72
      */
60 73
     public function setPaypalGatewayPassword($password);
61 74
 
62 75
     /**
63 76
      * @param string $signature
77
+     * @return void
64 78
      */
65 79
     public function setPaypalGatewaySignature($signature);
66 80
 
67 81
     /**
68 82
      * @param string $secretKey
83
+     * @return void
69 84
      */
70 85
     public function setStripeSecretKey($secretKey);
71 86
 
72 87
     /**
73 88
      * @param string $publishableKey
89
+     * @return void
74 90
      */
75 91
     public function setStripePublishableKey($publishableKey);
76 92
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PaymentMethod/UpdatePageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -17,28 +17,38 @@
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable();
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable();
23 29
 
24 30
     /**
25 31
      * @param string $name
26 32
      * @param string $languageCode
33
+     * @return void
27 34
      */
28 35
     public function nameIt($name, $languageCode);
29 36
 
30 37
     /**
31 38
      * @param string $username
39
+     * @return void
32 40
      */
33 41
     public function setPaypalGatewayUsername($username);
34 42
 
35 43
     /**
36 44
      * @param string $password
45
+     * @return void
37 46
      */
38 47
     public function setPaypalGatewayPassword($password);
39 48
 
40 49
     /**
41 50
      * @param string $signature
51
+     * @return void
42 52
      */
43 53
     public function setPaypalGatewaySignature($signature);
44 54
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/GeneratePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,23 +17,29 @@
 block discarded – undo
17 17
 
18 18
 interface GeneratePageInterface extends SymfonyPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function generate();
21 24
 
22 25
     /**
23 26
      * @param int $nth
24 27
      * @param int $price
25 28
      * @param string $channelName
29
+     * @return void
26 30
      */
27 31
     public function specifyPrice($nth, $price, $channelName);
28 32
 
29 33
     /**
30 34
      * @param int $nth
31 35
      * @param string $code
36
+     * @return void
32 37
      */
33 38
     public function specifyCode($nth, $code);
34 39
 
35 40
     /**
36 41
      * @param int $nth
42
+     * @return void
37 43
      */
38 44
     public function removeVariant($nth);
39 45
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Zone/CreatePageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -17,20 +17,26 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function addMember();
21 24
 
22 25
     /**
23 26
      * @param string $message
27
+     * @return boolean
24 28
      */
25 29
     public function checkValidationMessageForMembers($message);
26 30
 
27 31
     /**
28 32
      * @param string $name
33
+     * @return void
29 34
      */
30 35
     public function chooseMember($name);
31 36
 
32 37
     /**
33 38
      * @param string $scope
39
+     * @return void
34 40
      */
35 41
     public function selectScope($scope);
36 42
 
@@ -48,11 +54,13 @@  discard block
 block discarded – undo
48 54
 
49 55
     /**
50 56
      * @param string $name
57
+     * @return void
51 58
      */
52 59
     public function nameIt($name);
53 60
 
54 61
     /**
55 62
      * @param string $code
63
+     * @return void
56 64
      */
57 65
     public function specifyCode($code);
58 66
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/GridBundle/Doctrine/ORM/ExpressionBuilder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 namespace Sylius\Bundle\GridBundle\Doctrine\ORM;
15 15
 
16
-use Doctrine\ORM\Query\Expr\Comparison;
17 16
 use Doctrine\ORM\QueryBuilder;
17
+use Doctrine\ORM\Query\Expr\Comparison;
18 18
 use Sylius\Component\Grid\Data\ExpressionBuilderInterface;
19 19
 
20 20
 final class ExpressionBuilder implements ExpressionBuilderInterface
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/Updater/AverageRatingUpdater.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
 use Doctrine\Common\Persistence\ObjectManager;
17 17
 use Sylius\Component\Review\Calculator\ReviewableRatingCalculatorInterface;
18
-use Sylius\Component\Review\Model\ReviewableInterface;
19 18
 use Sylius\Component\Review\Model\ReviewInterface;
19
+use Sylius\Component\Review\Model\ReviewableInterface;
20 20
 
21 21
 class AverageRatingUpdater implements ReviewableRatingUpdaterInterface
22 22
 {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/Updater/ReviewableRatingUpdaterInterface.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 namespace Sylius\Bundle\ReviewBundle\Updater;
15 15
 
16
-use Sylius\Component\Review\Model\ReviewableInterface;
17 16
 use Sylius\Component\Review\Model\ReviewInterface;
17
+use Sylius\Component\Review\Model\ReviewableInterface;
18 18
 
19 19
 interface ReviewableRatingUpdaterInterface
20 20
 {
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -18,7 +18,13 @@
 block discarded – undo
18 18
 
19 19
 interface ReviewableRatingUpdaterInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function update(ReviewableInterface $reviewSubject): void;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function updateFromReview(ReviewInterface $review): void;
24 30
 }
Please login to merge, or discard this patch.