We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -23,8 +23,7 @@ |
||
| 23 | 23 | |
| 24 | 24 | try { |
| 25 | 25 | $select = app()->version() < 10 ? |
| 26 | - DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"') : |
|
| 27 | - DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"')->getValue($connection->getQueryGrammar()); |
|
| 26 | + DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"') : DB::raw('SHOW COLUMNS FROM `'.$table_prefix.$instance->getTable().'` WHERE Field = "'.$field_name.'"')->getValue($connection->getQueryGrammar()); |
|
| 28 | 27 | |
| 29 | 28 | $type = $connection->select($select)[0]->Type; |
| 30 | 29 | } catch (\Exception $e) { |