Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/User/Model/UserInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * @param string|null $email
44
+     * @return void
44 45
      */
45 46
     public function setEmail(?string $email): void;
46 47
 
@@ -53,11 +54,13 @@  discard block
 block discarded – undo
53 54
 
54 55
     /**
55 56
      * @param string|null $emailCanonical
57
+     * @return void
56 58
      */
57 59
     public function setEmailCanonical(?string $emailCanonical): void;
58 60
 
59 61
     /**
60 62
      * @param string|null $username
63
+     * @return void
61 64
      */
62 65
     public function setUsername(?string $username): void;
63 66
 
@@ -70,11 +73,13 @@  discard block
 block discarded – undo
70 73
 
71 74
     /**
72 75
      * @param string|null $usernameCanonical
76
+     * @return void
73 77
      */
74 78
     public function setUsernameCanonical(?string $usernameCanonical): void;
75 79
 
76 80
     /**
77 81
      * @param bool $locked
82
+     * @return void
78 83
      */
79 84
     public function setLocked(bool $locked): void;
80 85
 
@@ -85,6 +90,7 @@  discard block
 block discarded – undo
85 90
 
86 91
     /**
87 92
      * @param string|null $verificationToken
93
+     * @return void
88 94
      */
89 95
     public function setEmailVerificationToken(?string $verificationToken): void;
90 96
 
@@ -95,6 +101,7 @@  discard block
 block discarded – undo
95 101
 
96 102
     /**
97 103
      * @param string|null $passwordResetToken
104
+     * @return void
98 105
      */
99 106
     public function setPasswordResetToken(?string $passwordResetToken): void;
100 107
 
@@ -105,6 +112,7 @@  discard block
 block discarded – undo
105 112
 
106 113
     /**
107 114
      * @param \DateTimeInterface|null $date
115
+     * @return void
108 116
      */
109 117
     public function setPasswordRequestedAt(?\DateTimeInterface $date): void;
110 118
 
@@ -127,6 +135,7 @@  discard block
 block discarded – undo
127 135
 
128 136
     /**
129 137
      * @param \DateTimeInterface|null $verifiedAt
138
+     * @return void
130 139
      */
131 140
     public function setVerifiedAt(?\DateTimeInterface $verifiedAt): void;
132 141
 
@@ -137,6 +146,7 @@  discard block
 block discarded – undo
137 146
 
138 147
     /**
139 148
      * @param \DateTimeInterface|null $date
149
+     * @return void
140 150
      */
141 151
     public function setExpiresAt(?\DateTimeInterface $date): void;
142 152
 
@@ -147,6 +157,7 @@  discard block
 block discarded – undo
147 157
 
148 158
     /**
149 159
      * @param \DateTimeInterface|null $date
160
+     * @return void
150 161
      */
151 162
     public function setCredentialsExpireAt(?\DateTimeInterface $date): void;
152 163
 
@@ -157,6 +168,7 @@  discard block
 block discarded – undo
157 168
 
158 169
     /**
159 170
      * @param \DateTimeInterface|null $time
171
+     * @return void
160 172
      */
161 173
     public function setLastLogin(?\DateTimeInterface $time): void;
162 174
 
@@ -176,11 +188,13 @@  discard block
 block discarded – undo
176 188
 
177 189
     /**
178 190
      * @param string $role
191
+     * @return void
179 192
      */
180 193
     public function addRole(string $role): void;
181 194
 
182 195
     /**
183 196
      * @param string $role
197
+     * @return void
184 198
      */
185 199
     public function removeRole(string $role): void;
186 200
 
@@ -198,6 +212,7 @@  discard block
 block discarded – undo
198 212
 
199 213
     /**
200 214
      * @param UserOAuthInterface $oauth
215
+     * @return void
201 216
      */
202 217
     public function addOAuthAccount(UserOAuthInterface $oauth): void;
203 218
 }
Please login to merge, or discard this patch.
Sylius/Bundle/FixturesBundle/Listener/BeforeFixtureListenerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param FixtureEvent $fixtureEvent
23 23
      * @param array $options
24
+     * @return void
24 25
      */
25 26
     public function beforeFixture(FixtureEvent $fixtureEvent, array $options): void;
26 27
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/Listener/BeforeSuiteListenerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param SuiteEvent $suiteEvent
23 23
      * @param array $options
24
+     * @return void
24 25
      */
25 26
     public function beforeSuite(SuiteEvent $suiteEvent, array $options): void;
26 27
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/Loader/FixtureLoaderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
      * @param SuiteInterface $suite
26 26
      * @param FixtureInterface $fixture
27 27
      * @param array $options
28
+     * @return void
28 29
      */
29 30
     public function load(SuiteInterface $suite, FixtureInterface $fixture, array $options): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/Loader/SuiteLoaderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param SuiteInterface $suite
25
+     * @return void
25 26
      */
26 27
     public function load(SuiteInterface $suite): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Taxation/Model/TaxCategoryInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param string|null $name
33
+     * @return void
33 34
      */
34 35
     public function setName(?string $name): void;
35 36
 
@@ -40,6 +41,7 @@  discard block
 block discarded – undo
40 41
 
41 42
     /**
42 43
      * @param string|null $description
44
+     * @return void
43 45
      */
44 46
     public function setDescription(?string $description): void;
45 47
 
@@ -50,11 +52,13 @@  discard block
 block discarded – undo
50 52
 
51 53
     /**
52 54
      * @param TaxRateInterface $rate
55
+     * @return void
53 56
      */
54 57
     public function addRate(TaxRateInterface $rate): void;
55 58
 
56 59
     /**
57 60
      * @param TaxRateInterface $rate
61
+     * @return void
58 62
      */
59 63
     public function removeRate(TaxRateInterface $rate): void;
60 64
 
Please login to merge, or discard this patch.
src/Sylius/Component/Taxation/Model/TaxRateInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param TaxCategoryInterface|null $category
32
+     * @return void
32 33
      */
33 34
     public function setCategory(?TaxCategoryInterface $category): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $name
43
+     * @return void
42 44
      */
43 45
     public function setName(?string $name): void;
44 46
 
@@ -54,6 +56,7 @@  discard block
 block discarded – undo
54 56
 
55 57
     /**
56 58
      * @param float|null $amount
59
+     * @return void
57 60
      */
58 61
     public function setAmount(?float $amount): void;
59 62
 
@@ -64,6 +67,7 @@  discard block
 block discarded – undo
64 67
 
65 68
     /**
66 69
      * @param bool|null $includedInPrice
70
+     * @return void
67 71
      */
68 72
     public function setIncludedInPrice(?bool $includedInPrice): void;
69 73
 
@@ -74,6 +78,7 @@  discard block
 block discarded – undo
74 78
 
75 79
     /**
76 80
      * @param string|null $calculator
81
+     * @return void
77 82
      */
78 83
     public function setCalculator(?string $calculator): void;
79 84
 
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
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param string $identifier
23 23
      * @param string $typeIdentifier
24 24
      * @param string $formType
25
+     * @return void
25 26
      */
26 27
     public function add(string $identifier, string $typeIdentifier, string $formType): void;
27 28
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Data/ExpressionBuilderInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param string $field
70
-     * @param mixed $value
70
+     * @param string $value
71 71
      *
72 72
      * @return mixed
73 73
      */
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * @param string $field
86
-     * @param mixed $value
86
+     * @param string $value
87 87
      *
88 88
      * @return mixed
89 89
      */
Please login to merge, or discard this patch.