We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | $connection = DB::connection($this->getConnectionName()); |
| 24 | 24 | |
| 25 | - if (! method_exists($connection, 'getDoctrineSchemaManager')) { |
|
| 25 | + if (!method_exists($connection, 'getDoctrineSchemaManager')) { |
|
| 26 | 26 | return $connection; |
| 27 | 27 | } |
| 28 | 28 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | if (self::isSqlConnection()) { |
| 36 | 36 | $platform = $connection->getDoctrineSchemaManager()->getDatabasePlatform(); |
| 37 | 37 | foreach ($types as $type_key => $type_value) { |
| 38 | - if (! $platform->hasDoctrineTypeMappingFor($type_key)) { |
|
| 38 | + if (!$platform->hasDoctrineTypeMappingFor($type_key)) { |
|
| 39 | 39 | $platform->registerDoctrineTypeMapping($type_key, $type_value); |
| 40 | 40 | } |
| 41 | 41 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | public function getColumnType($columnName) |
| 67 | 67 | { |
| 68 | - if (! self::isSqlConnection()) { |
|
| 68 | + if (!self::isSqlConnection()) { |
|
| 69 | 69 | return 'text'; |
| 70 | 70 | } |
| 71 | 71 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public static function isColumnNullable($columnName) |
| 82 | 82 | { |
| 83 | - if (! self::isSqlConnection()) { |
|
| 83 | + if (!self::isSqlConnection()) { |
|
| 84 | 84 | return true; |
| 85 | 85 | } |
| 86 | 86 | |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | public static function dbColumnHasDefault($columnName) |
| 97 | 97 | { |
| 98 | - if (! self::isSqlConnection()) { |
|
| 98 | + if (!self::isSqlConnection()) { |
|
| 99 | 99 | return false; |
| 100 | 100 | } |
| 101 | 101 | |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | public static function getDbColumnDefault($columnName) |
| 112 | 112 | { |
| 113 | - if (! self::isSqlConnection()) { |
|
| 113 | + if (!self::isSqlConnection()) { |
|
| 114 | 114 | return false; |
| 115 | 115 | } |
| 116 | 116 | |