@@ -280,7 +280,7 @@ |
||
| 280 | 280 | |
| 281 | 281 | |
| 282 | 282 | |
| 283 | - ; |
|
| 283 | + ; |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | /** |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | try { |
| 156 | 156 | $capsule = $capsule ?? new Capsule($this->dbal->database($migration->getDatabase())); |
| 157 | 157 | $capsule->getDatabase($migration->getDatabase())->transaction( |
| 158 | - static function () use ($migration, $capsule): void { |
|
| 158 | + static function() use ($migration, $capsule): void { |
|
| 159 | 159 | $migration->withCapsule($capsule)->up(); |
| 160 | 160 | } |
| 161 | 161 | ); |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | |
| 213 | 213 | $capsule = $capsule ?? new Capsule($this->dbal->database($migration->getDatabase())); |
| 214 | 214 | $capsule->getDatabase()->transaction( |
| 215 | - static function () use ($migration, $capsule): void { |
|
| 215 | + static function() use ($migration, $capsule): void { |
|
| 216 | 216 | $migration->withCapsule($capsule)->down(); |
| 217 | 217 | } |
| 218 | 218 | ); |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | } |
| 277 | 277 | } |
| 278 | 278 | |
| 279 | - return ! (!$table->hasIndex(['migration', 'created_at'])) |
|
| 279 | + return !(!$table->hasIndex(['migration', 'created_at'])) |
|
| 280 | 280 | |
| 281 | 281 | |
| 282 | 282 | |