Completed
Branch master (d2db8a)
by Enrico
07:12 queued 11s
created
Constraints/AudioValidator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * @param Constraint $constraint
66 66
      *
67 67
      * @throws ConstraintDefinitionException
68
-     * @return boolean
68
+     * @return boolean|null
69 69
      */
70 70
     protected function validateMaxDuration($duration, Constraint $constraint)
71 71
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * @param Constraint $constraint
99 99
      *
100 100
      * @throws ConstraintDefinitionException
101
-     * @return boolean
101
+     * @return boolean|null
102 102
      */
103 103
     protected function validateMinDuration($duration, Constraint $constraint)
104 104
     {
Please login to merge, or discard this patch.
Constraints/CsvValidator.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * @param Constraint $constraint
119 119
      *
120 120
      * @throws ConstraintDefinitionException
121
-     * @return boolean
121
+     * @return boolean|null
122 122
      */
123 123
     protected function validateEmptyColumns($columnsSizes, Constraint $constraint)
124 124
     {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      * @param Constraint $constraint
140 140
      *
141 141
      * @throws ConstraintDefinitionException
142
-     * @return boolean
142
+     * @return boolean|null
143 143
      */
144 144
     protected function validateMaxColumns($columnsSizes, Constraint $constraint)
145 145
     {
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      * @param Constraint $constraint
175 175
      *
176 176
      * @throws ConstraintDefinitionException
177
-     * @return boolean
177
+     * @return boolean|null
178 178
      */
179 179
     protected function validateMinColumns($columnsSizes, Constraint $constraint)
180 180
     {
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      * @param Constraint $constraint
210 210
      *
211 211
      * @throws ConstraintDefinitionException
212
-     * @return boolean
212
+     * @return boolean|null
213 213
      */
214 214
     protected function validateMaxRows($rows, Constraint $constraint)
215 215
     {
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      * @param Constraint $constraint
242 242
      *
243 243
      * @throws ConstraintDefinitionException
244
-     * @return boolean
244
+     * @return boolean|null
245 245
      */
246 246
     protected function validateminRows($rows, Constraint $constraint)
247 247
     {
Please login to merge, or discard this patch.