Passed
Push — dev6 ( 811cb3...58f07d )
by Ron
13:14
created
app/Console/Commands/MigrateDatabaseCommand.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     {
45 45
         parent::__construct();
46 46
 
47
-        $this->database      = config('database.connections.mysql.database');
47
+        $this->database = config('database.connections.mysql.database');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -273,8 +273,7 @@
 block discarded – undo
273 273
      */
274 274
     protected function getPermissionValue($permArray, $id)
275 275
     {
276
-        $obj = Arr::first($permArray, function($value, $key) use ($id)
277
-                {
276
+        $obj = Arr::first($permArray, function($value, $key) use ($id) {
278 277
                     return $value->perm_type_id == $id;
279 278
                 });
280 279
 
Please login to merge, or discard this patch.
app/Models/UserCustomerRecent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
     protected $guarded = ['id', 'updated_at', 'created_at'];
13 13
     protected $hidden  = ['id', 'user_id', 'created_at', 'Customer'];
14
-    protected $appends      = ['name', 'slug'];
14
+    protected $appends = ['name', 'slug'];
15 15
 
16 16
     public function Customer()
17 17
     {
Please login to merge, or discard this patch.