@@ -101,11 +101,11 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | public function compileExcludeRangeOverlapping(Blueprint $blueprint, Fluent $command): ?string |
| 103 | 103 | { |
| 104 | - if (! $command->range_column) { |
|
| 104 | + if (!$command->range_column) { |
|
| 105 | 105 | return null; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - if (! empty($command->additionalColumns)) { |
|
| 108 | + if (!empty($command->additionalColumns)) { |
|
| 109 | 109 | $this->addBtreeGistExtension(); |
| 110 | 110 | } |
| 111 | 111 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | |
| 124 | 124 | private function getAdditionalColumnsForExclude(?array $additionalColumns = []): string |
| 125 | 125 | { |
| 126 | - if (! is_array($additionalColumns)) { |
|
| 126 | + if (!is_array($additionalColumns)) { |
|
| 127 | 127 | return ''; |
| 128 | 128 | } |
| 129 | 129 | |