Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
Bundle/PayumBundle/Action/Paypal/ExpressCheckout/ConvertPaymentAction.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,6 @@
 block discarded – undo
103 103
 
104 104
     /**
105 105
      * @param int $price
106
-     * @param string $currencyCode
107 106
      *
108 107
      * @return float
109 108
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/CreatePageInterface.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -22,16 +22,19 @@  discard block
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param string $code
25
+     * @return void
25 26
      */
26 27
     public function specifyCode($code);
27 28
 
28 29
     /**
29 30
      * @param string $name
31
+     * @return void
30 32
      */
31 33
     public function nameIt($name);
32 34
 
33 35
     /**
34 36
      * @param string $ruleName
37
+     * @return void
35 38
      */
36 39
     public function addRule($ruleName);
37 40
 
@@ -39,12 +42,14 @@  discard block
 block discarded – undo
39 42
      * @param string $option
40 43
      * @param string $value
41 44
      * @param bool $multiple
45
+     * @return void
42 46
      */
43 47
     public function selectRuleOption($option, $value, $multiple = false);
44 48
 
45 49
     /**
46 50
      * @param string $option
47 51
      * @param string $value
52
+     * @return void
48 53
      */
49 54
     public function fillRuleOption($option, $value);
50 55
 
@@ -52,11 +57,13 @@  discard block
 block discarded – undo
52 57
      * @param string $channelName
53 58
      * @param string $option
54 59
      * @param string $value
60
+     * @return void
55 61
      */
56 62
     public function fillRuleOptionForChannel($channelName, $option, $value);
57 63
 
58 64
     /**
59 65
      * @param string $actionName
66
+     * @return void
60 67
      */
61 68
     public function addAction($actionName);
62 69
 
@@ -64,12 +71,14 @@  discard block
 block discarded – undo
64 71
      * @param string $option
65 72
      * @param string $value
66 73
      * @param bool $multiple
74
+     * @return void
67 75
      */
68 76
     public function selectActionOption($option, $value, $multiple = false);
69 77
 
70 78
     /**
71 79
      * @param string $option
72 80
      * @param string $value
81
+     * @return void
73 82
      */
74 83
     public function fillActionOption($option, $value);
75 84
 
@@ -77,30 +86,41 @@  discard block
 block discarded – undo
77 86
      * @param string $channelName
78 87
      * @param string $option
79 88
      * @param string $value
89
+     * @return void
80 90
      */
81 91
     public function fillActionOptionForChannel($channelName, $option, $value);
82 92
 
83 93
     /**
84 94
      * @param string $limit
95
+     * @return void
85 96
      */
86 97
     public function fillUsageLimit($limit);
87 98
 
99
+    /**
100
+     * @return void
101
+     */
88 102
     public function makeExclusive();
89 103
 
104
+    /**
105
+     * @return void
106
+     */
90 107
     public function checkCouponBased();
91 108
 
92 109
     /**
93 110
      * @param string $name
111
+     * @return void
94 112
      */
95 113
     public function checkChannel($name);
96 114
 
97 115
     /**
98 116
      * @param \DateTime $dateTime
117
+     * @return void
99 118
      */
100 119
     public function setStartsAt(\DateTime $dateTime);
101 120
 
102 121
     /**
103 122
      * @param \DateTime $dateTime
123
+     * @return void
104 124
      */
105 125
     public function setEndsAt(\DateTime $dateTime);
106 126
 
@@ -115,6 +135,7 @@  discard block
 block discarded – undo
115 135
      * @param string $option
116 136
      * @param string $value
117 137
      * @param bool $multiple
138
+     * @return void
118 139
      */
119 140
     public function selectFilterOption($option, $value, $multiple = false);
120 141
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Remover/ReviewerReviewsRemover.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      * @param ReviewInterface $review
76 76
      * @param ReviewableInterface[] $reviewSubjectsToRecalculate
77 77
      *
78
-     * @return array
78
+     * @return ReviewableInterface[]
79 79
      */
80 80
     private function removeReviewsAndExtractSubject(ReviewInterface $review, array $reviewSubjectsToRecalculate)
81 81
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/UiBundle/View/Template/SemanticUiTemplate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@
 block discarded – undo
53 53
         return $this->pageWithTextAndClass($page, $text, $class);
54 54
     }
55 55
 
56
+    /**
57
+     * @param integer $page
58
+     */
56 59
     private function pageWithTextAndClass($page, $text, $class)
57 60
     {
58 61
         $href = $this->generateRoute($page);
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/OrderInterface.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param null|\DateTime $checkoutCompletedAt
35
+     * @return void
35 36
      */
36 37
     public function setCheckoutCompletedAt(\DateTime $checkoutCompletedAt = null);
37 38
 
@@ -40,6 +41,9 @@  discard block
 block discarded – undo
40 41
      */
41 42
     public function isCheckoutCompleted();
42 43
 
44
+    /**
45
+     * @return void
46
+     */
43 47
     public function completeCheckout();
44 48
 
45 49
     /**
@@ -49,6 +53,7 @@  discard block
 block discarded – undo
49 53
 
50 54
     /**
51 55
      * @param string
56
+     * @return void
52 57
      */
53 58
     public function setNumber($number);
54 59
 
@@ -59,6 +64,7 @@  discard block
 block discarded – undo
59 64
 
60 65
     /**
61 66
      * @param string $notes
67
+     * @return void
62 68
      */
63 69
     public function setNotes($notes);
64 70
 
@@ -67,6 +73,9 @@  discard block
 block discarded – undo
67 73
      */
68 74
     public function getItems();
69 75
 
76
+    /**
77
+     * @return void
78
+     */
70 79
     public function clearItems();
71 80
 
72 81
     /**
@@ -76,11 +85,13 @@  discard block
 block discarded – undo
76 85
 
77 86
     /**
78 87
      * @param OrderItemInterface $item
88
+     * @return void
79 89
      */
80 90
     public function addItem(OrderItemInterface $item);
81 91
 
82 92
     /**
83 93
      * @param OrderItemInterface $item
94
+     * @return void
84 95
      */
85 96
     public function removeItem(OrderItemInterface $item);
86 97
 
@@ -96,6 +107,9 @@  discard block
 block discarded – undo
96 107
      */
97 108
     public function getItemsTotal();
98 109
 
110
+    /**
111
+     * @return void
112
+     */
99 113
     public function recalculateItemsTotal();
100 114
 
101 115
     /**
@@ -115,6 +129,7 @@  discard block
 block discarded – undo
115 129
 
116 130
     /**
117 131
      * @param string $state
132
+     * @return void
118 133
      */
119 134
     public function setState($state);
120 135
 
@@ -139,6 +154,7 @@  discard block
 block discarded – undo
139 154
 
140 155
     /**
141 156
      * @param string|null $type
157
+     * @return void
142 158
      */
143 159
     public function removeAdjustmentsRecursively($type = null);
144 160
 }
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
@@ -18,20 +18,26 @@  discard block
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function addMember();
22 25
 
23 26
     /**
24 27
      * @param string $message
28
+     * @return boolean
25 29
      */
26 30
     public function checkValidationMessageForMembers($message);
27 31
 
28 32
     /**
29 33
      * @param string $name
34
+     * @return void
30 35
      */
31 36
     public function chooseMember($name);
32 37
 
33 38
     /**
34 39
      * @param string $scope
40
+     * @return void
35 41
      */
36 42
     public function selectScope($scope);
37 43
 
@@ -49,11 +55,13 @@  discard block
 block discarded – undo
49 55
 
50 56
     /**
51 57
      * @param string $name
58
+     * @return void
52 59
      */
53 60
     public function nameIt($name);
54 61
 
55 62
     /**
56 63
      * @param string $code
64
+     * @return void
57 65
      */
58 66
     public function specifyCode($code);
59 67
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/spec/Suite/SuiteSpec.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -84,6 +84,7 @@
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param Collaborator[] ...$collaborators
87
+     * @param FixtureInterface $collaborators
87 88
      *
88 89
      * @return \Generator
89 90
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingMethod/UpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -31,10 +31,19 @@
 block discarded – undo
31 31
      */
32 32
     public function isAvailableInChannel($channelName);
33 33
 
34
+    /**
35
+     * @return void
36
+     */
34 37
     public function enable();
35 38
 
39
+    /**
40
+     * @return void
41
+     */
36 42
     public function disable();
37 43
 
44
+    /**
45
+     * @return void
46
+     */
38 47
     public function removeZone();
39 48
 
40 49
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/SelectShippingPageInterface.php 1 patch
Doc Comments   +11 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 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
 
@@ -48,14 +49,23 @@  discard block
 block discarded – undo
48 49
      */
49 50
     public function getItemSubtotal($itemName);
50 51
 
52
+    /**
53
+     * @return void
54
+     */
51 55
     public function nextStep();
52 56
 
57
+    /**
58
+     * @return void
59
+     */
53 60
     public function changeAddress();
54 61
 
62
+    /**
63
+     * @return void
64
+     */
55 65
     public function changeAddressByStepLabel();
56 66
 
57 67
     /**
58
-     * @return mixed string
68
+     * @return string string
59 69
      */
60 70
     public function getPurchaserEmail();
61 71
 
Please login to merge, or discard this patch.