Completed
Push — master ( bfa8d8...3a0338 )
by Arjay
02:05
created
src/Engines/QueryBuilderEngine.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -450,7 +450,7 @@
 block discarded – undo
450 450
     /**
451 451
      * Prepare count query builder.
452 452
      *
453
-     * @return \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder
453
+     * @return string
454 454
      */
455 455
     protected function prepareCountQuery()
456 456
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -555,7 +555,7 @@
 block discarded – undo
555 555
             $column = $this->getColumnName($index);
556 556
 
557 557
             if ($this->hasCustomFilter($column)) {
558
-                $keyword  = $this->getColumnSearchKeyword($index, $raw = true);
558
+                $keyword = $this->getColumnSearchKeyword($index, $raw = true);
559 559
                 $this->applyFilterColumn($this->query, $column, $keyword);
560 560
             } else {
561 561
                 if (count(explode('.', $column)) > 1) {
Please login to merge, or discard this patch.
src/Engines/EloquentEngine.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
     /**
198 198
      * Add relation query on global search.
199 199
      *
200
-     * @param mixed  $query
200
+     * @param Builder  $query
201 201
      * @param string $relation
202 202
      * @param string $column
203 203
      * @param string $keyword
Please login to merge, or discard this patch.