@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | { |
| 10 | 10 | public function execute() |
| 11 | 11 | { |
| 12 | - Capsule::schema()->create('country', function ($table) { |
|
| 12 | + Capsule::schema()->create('country', function($table) { |
|
| 13 | 13 | $table->increments('id'); |
| 14 | 14 | $table->string('title', 100); |
| 15 | 15 | $table->string('code')->nullable()->comments('unique value'); |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | public function check(callable $callback) |
| 22 | 22 | { |
| 23 | - if ( Capsule::schema()->hasTable('country') === false ) |
|
| 23 | + if (Capsule::schema()->hasTable('country') === false) |
|
| 24 | 24 | { |
| 25 | 25 | call_user_func($callback, $this); |
| 26 | 26 | } |