Test Failed
Pull Request — master (#4)
by
unknown
03:29
created
src/Query/Grammars/Grammar.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,6 +182,7 @@  discard block
 block discarded – undo
182 182
 
183 183
     /**
184 184
      * {@inheritdoc}
185
+     * @return string
185 186
      */
186 187
     public function compileDelete(Builder $query)
187 188
     {
@@ -294,7 +295,7 @@  discard block
 block discarded – undo
294 295
      *
295 296
      * @param Builder $query
296 297
      * @param $aggregate
297
-     * @param $aql
298
+     * @param string $aql
298 299
      * @return string
299 300
      */
300 301
     protected function compileAggregateExtended(Builder $query, $aggregate, $aql)
@@ -326,6 +327,7 @@  discard block
 block discarded – undo
326 327
 
327 328
     /**
328 329
      * {@inheritdoc}
330
+     * @param Builder $query
329 331
      */
330 332
     protected function concatenateWhereClauses($query, $sql)
331 333
     {
@@ -334,6 +336,7 @@  discard block
 block discarded – undo
334 336
 
335 337
     /**
336 338
      * {@inheritdoc}
339
+     * @param Builder $query
337 340
      */
338 341
     protected function compileWheresToArray($query)
339 342
     {
Please login to merge, or discard this patch.
src/Query/QueryBuilder.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -242,6 +242,7 @@  discard block
 block discarded – undo
242 242
 
243 243
     /**
244 244
      * {@inheritdoc}
245
+     * @param string $operator
245 246
      */
246 247
     public function where($column, $operator = null, $value = null, $boolean = 'and')
247 248
     {
@@ -319,6 +320,9 @@  discard block
 block discarded – undo
319 320
 
320 321
     /**
321 322
      * {@inheritdoc}
323
+     * @param string $first
324
+     * @param string $operator
325
+     * @param string $second
322 326
      */
323 327
     public function whereColumn($first, $operator = null, $second = null, $boolean = 'and')
324 328
     {
@@ -355,6 +359,7 @@  discard block
 block discarded – undo
355 359
 
356 360
     /**
357 361
      * {@inheritdoc}
362
+     * @param string $column
358 363
      */
359 364
     public function whereNull($column, $boolean = 'and', $not = false)
360 365
     {
@@ -496,6 +501,7 @@  discard block
 block discarded – undo
496 501
 
497 502
     /**
498 503
      * {@inheritdoc}
504
+     * @param string $function
499 505
      */
500 506
     public function aggregate($function, $columns = ['*'])
501 507
     {
Please login to merge, or discard this patch.