Completed
Push — pagerfanta-fix ( 2d594b...187c46 )
by Kamil
35:56 queued 17:55
created
src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -55,11 +55,13 @@  discard block
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * @param ProductVariantImageInterface $image
58
+     * @return void
58 59
      */
59 60
     public function addImage(ProductVariantImageInterface $image);
60 61
 
61 62
     /**
62 63
      * @param ProductVariantImageInterface $image
64
+     * @return void
63 65
      */
64 66
     public function removeImage(ProductVariantImageInterface $image);
65 67
 
@@ -70,6 +72,7 @@  discard block
 block discarded – undo
70 72
 
71 73
     /**
72 74
      * @param int $sold
75
+     * @return void
73 76
      */
74 77
     public function setSold($sold);
75 78
 
@@ -80,6 +83,7 @@  discard block
 block discarded – undo
80 83
 
81 84
     /**
82 85
      * @param float $weight
86
+     * @return void
83 87
      */
84 88
     public function setWeight($weight);
85 89
 
@@ -90,6 +94,7 @@  discard block
 block discarded – undo
90 94
 
91 95
     /**
92 96
      * @param float $width
97
+     * @return void
93 98
      */
94 99
     public function setWidth($width);
95 100
 
@@ -100,6 +105,7 @@  discard block
 block discarded – undo
100 105
 
101 106
     /**
102 107
      * @param float $height
108
+     * @return void
103 109
      */
104 110
     public function setHeight($height);
105 111
 
@@ -110,6 +116,7 @@  discard block
 block discarded – undo
110 116
 
111 117
     /**
112 118
      * @param float $depth
119
+     * @return void
113 120
      */
114 121
     public function setDepth($depth);
115 122
 
@@ -120,6 +127,7 @@  discard block
 block discarded – undo
120 127
 
121 128
     /**
122 129
      * @param int|null $originalPrice
130
+     * @return void
123 131
      */
124 132
     public function setOriginalPrice($originalPrice);
125 133
 
@@ -130,6 +138,7 @@  discard block
 block discarded – undo
130 138
 
131 139
     /**
132 140
      * @param TaxCategoryInterface $category
141
+     * @return void
133 142
      */
134 143
     public function setTaxCategory(TaxCategoryInterface $category = null);
135 144
 }
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/Form/Registry/FormTypeRegistryInterface.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/Core/Model/ProductInterface.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/Bundle/GridBundle/Form/Registry/FormTypeRegistryInterface.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/Behat/Page/Admin/Order/UpdatePageInterface.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.
src/Sylius/Behat/Page/Shop/HomePageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -25,15 +25,20 @@
 block discarded – undo
25 25
      */
26 26
     public function hasValidationErrorWith($message);
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function logIn();
29 32
 
30 33
     /**
31 34
      * @param string $password
35
+     * @return void
32 36
      */
33 37
     public function specifyPassword($password);
34 38
 
35 39
     /**
36 40
      * @param string $userName
41
+     * @return void
37 42
      */
38 43
     public function specifyUserName($userName);
39 44
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Checkout/CheckoutResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     /**
39 39
      * Get flash message.
40 40
      *
41
-     * @return null|string
41
+     * @return string
42 42
      */
43 43
     public function getMessage()
44 44
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Security/UserImpersonatorInterface.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/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param string $email
42
+     * @return void
42 43
      */
43 44
     public function setEmail($email);
44 45
 
@@ -51,6 +52,7 @@  discard block
 block discarded – undo
51 52
 
52 53
     /**
53 54
      * @param string $emailCanonical
55
+     * @return void
54 56
      */
55 57
     public function setEmailCanonical($emailCanonical);
56 58
 
@@ -61,11 +63,13 @@  discard block
 block discarded – undo
61 63
 
62 64
     /**
63 65
      * @param CustomerInterface $customer
66
+     * @return void
64 67
      */
65 68
     public function setCustomer(CustomerInterface $customer = null);
66 69
 
67 70
     /**
68 71
      * @param string $username
72
+     * @return void
69 73
      */
70 74
     public function setUsername($username);
71 75
 
@@ -78,11 +82,13 @@  discard block
 block discarded – undo
78 82
 
79 83
     /**
80 84
      * @param string $usernameCanonical
85
+     * @return void
81 86
      */
82 87
     public function setUsernameCanonical($usernameCanonical);
83 88
 
84 89
     /**
85 90
      * @param bool $locked
91
+     * @return void
86 92
      */
87 93
     public function setLocked($locked);
88 94
 
@@ -93,6 +99,7 @@  discard block
 block discarded – undo
93 99
 
94 100
     /**
95 101
      * @param string $confirmationToken
102
+     * @return void
96 103
      */
97 104
     public function setConfirmationToken($confirmationToken);
98 105
 
@@ -100,6 +107,7 @@  discard block
 block discarded – undo
100 107
      * Sets the timestamp that the user requested a password reset.
101 108
      *
102 109
      * @param null|\DateTime $date
110
+     * @return void
103 111
      */
104 112
     public function setPasswordRequestedAt(\DateTime $date = null);
105 113
 
@@ -114,6 +122,7 @@  discard block
 block discarded – undo
114 122
 
115 123
     /**
116 124
      * @param \DateTime $date
125
+     * @return void
117 126
      */
118 127
     public function setCredentialsExpireAt(\DateTime $date = null);
119 128
 
@@ -124,6 +133,7 @@  discard block
 block discarded – undo
124 133
 
125 134
     /**
126 135
      * @param \DateTime $time
136
+     * @return void
127 137
      */
128 138
     public function setLastLogin(\DateTime $time = null);
129 139
 
@@ -145,16 +155,19 @@  discard block
 block discarded – undo
145 155
      * This overwrites any previous roles.
146 156
      *
147 157
      * @param array $roles
158
+     * @return void
148 159
      */
149 160
     public function setRoles(array $roles);
150 161
 
151 162
     /**
152 163
      * @param string $role
164
+     * @return void
153 165
      */
154 166
     public function addRole($role);
155 167
 
156 168
     /**
157 169
      * @param string $role
170
+     * @return void
158 171
      */
159 172
     public function removeRole($role);
160 173
 
@@ -178,6 +191,7 @@  discard block
 block discarded – undo
178 191
      * Connects OAuth account.
179 192
      *
180 193
      * @param UserOAuthInterface $oauth
194
+     * @return void
181 195
      */
182 196
     public function addOAuthAccount(UserOAuthInterface $oauth);
183 197
 }
Please login to merge, or discard this patch.