Completed
Branch master (785674)
by Chubarov
04:40 queued 02:13
created
src/database/migrations/CountryMigration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.