Completed
Push — master ( d1f0ce...af9c7a )
by Sergii
05:31 queued 01:47
created
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.
src/Query/Grammars/Grammar.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * {@inheritdoc}
48
+     * @return string
48 49
      */
49 50
     public function compileInsert(Builder $query, array $values)
50 51
     {
@@ -182,6 +183,7 @@  discard block
 block discarded – undo
182 183
 
183 184
     /**
184 185
      * {@inheritdoc}
186
+     * @return string
185 187
      */
186 188
     public function compileDelete(Builder $query)
187 189
     {
@@ -294,7 +296,7 @@  discard block
 block discarded – undo
294 296
      *
295 297
      * @param Builder $query
296 298
      * @param $aggregate
297
-     * @param $aql
299
+     * @param string $aql
298 300
      * @return string
299 301
      */
300 302
     protected function compileAggregateExtended(Builder $query, $aggregate, $aql)
@@ -326,6 +328,7 @@  discard block
 block discarded – undo
326 328
 
327 329
     /**
328 330
      * {@inheritdoc}
331
+     * @param Builder $query
329 332
      */
330 333
     protected function concatenateWhereClauses($query, $sql)
331 334
     {
@@ -334,6 +337,7 @@  discard block
 block discarded – undo
334 337
 
335 338
     /**
336 339
      * {@inheritdoc}
340
+     * @param Builder $query
337 341
      */
338 342
     protected function compileWheresToArray($query)
339 343
     {
Please login to merge, or discard this patch.