Completed
Push — master ( 3b959e...a358e4 )
by Nasrul Hazim
04:19
created
stubs/database/migrations/2018_08_15_235959_create_banks_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Console/Commands/SeedProfileCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.