We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -22,9 +22,9 @@ discard block  | 
                                                    ||
| 22 | 22 | */  | 
                                                        
| 23 | 23 | public function applySearchTerm($searchTerm)  | 
                                                        
| 24 | 24 |      { | 
                                                        
| 25 | -        return $this->query->where(function ($query) use ($searchTerm) { | 
                                                        |
| 25 | +        return $this->query->where(function($query) use ($searchTerm) { | 
                                                        |
| 26 | 26 |              foreach ($this->columns() as $column) { | 
                                                        
| 27 | -                if (! isset($column['type'])) { | 
                                                        |
| 27 | +                if (!isset($column['type'])) { | 
                                                        |
| 28 | 28 | abort(400, 'Missing column type when trying to apply search term.');  | 
                                                        
| 29 | 29 | }  | 
                                                        
| 30 | 30 | |
@@ -82,7 +82,7 @@ discard block  | 
                                                    ||
| 82 | 82 | |
| 83 | 83 | case 'select':  | 
                                                        
| 84 | 84 | case 'select_multiple':  | 
                                                        
| 85 | -                    $query->orWhereHas($column['entity'], function ($q) use ($column, $searchTerm) { | 
                                                        |
| 85 | +                    $query->orWhereHas($column['entity'], function($q) use ($column, $searchTerm) { | 
                                                        |
| 86 | 86 | $q->where($this->getColumnWithTableNamePrefixed($q, $column['attribute']), 'like', '%'.$searchTerm.'%');  | 
                                                        
| 87 | 87 | });  | 
                                                        
| 88 | 88 | break;  | 
                                                        
@@ -288,7 +288,7 @@ discard block  | 
                                                    ||
| 288 | 288 | */  | 
                                                        
| 289 | 289 | private function renderCellView($view, $column, $entry, $rowNumber = false)  | 
                                                        
| 290 | 290 |      { | 
                                                        
| 291 | -        if (! view()->exists($view)) { | 
                                                        |
| 291 | +        if (!view()->exists($view)) { | 
                                                        |
| 292 | 292 | $view = 'crud::columns.text'; // fallback to text column  | 
                                                        
| 293 | 293 | }  | 
                                                        
| 294 | 294 | |