@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | public function up() |
13 | 13 | { |
14 | - Schema::create('banks', function (Blueprint $table) { |
|
14 | + Schema::create('banks', function(Blueprint $table) { |
|
15 | 15 | $table->increments('id'); |
16 | 16 | $table->string('name')->nullable(); |
17 | 17 | $table->code('swift_code'); |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $table->standardTime(); |
20 | 20 | }); |
21 | 21 | |
22 | - Schema::create('bank_accounts', function (Blueprint $table) { |
|
22 | + Schema::create('bank_accounts', function(Blueprint $table) { |
|
23 | 23 | $table->increments('id'); |
24 | 24 | $table->hashslug(); |
25 | 25 | $table->belongsTo('banks'); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public function handle() |
37 | 37 | { |
38 | 38 | foreach (config('profile.seeders') as $seeder) { |
39 | - if (! class_exists($seeder)) { |
|
39 | + if (!class_exists($seeder)) { |
|
40 | 40 | $this->comment($seeder . ' does not exists'); |
41 | 41 | continue; |
42 | 42 | } |