Completed
Push — master ( c11be3...9f20c0 )
by Sergi Tur
57:43 queued 27:46
created
src/Console/AdminLTEAdmin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
     public function handle()
30 30
     {
31 31
         $this->create_admin_user();
32
-        $this->info('User ' . $this->username() . '(' . $this->email() . ') ' .
33
-            $this->passwordInfo() . ' created succesfully!');
32
+        $this->info('User '.$this->username().'('.$this->email().') '.
33
+            $this->passwordInfo().' created succesfully!');
34 34
         $this->call('make:adminUserSeeder');
35 35
         $this->info('A database seed has been created to permanently add admin user to database.');
36 36
     }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             factory(get_class(app('App\User')))->create([
45 45
                     "name" => env('ADMIN_USER', $this->username()),
46 46
                     "email" => env('ADMIN_EMAIL', $this->email()),
47
-                    "password" => bcrypt(env('ADMIN_PWD', '123456'))]
47
+                    "password" => bcrypt(env('ADMIN_PWD', '123456')) ]
48 48
             );
49 49
         } catch (\Illuminate\Database\QueryException $exception) {
50 50
 
Please login to merge, or discard this patch.