Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Test Setup Failed
Branch laravel-55 (926547)
by José
03:16
created
app/Models/User.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -113,10 +113,10 @@
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
- * Get the route key for the model.
117
- *
118
- * @return string
119
- */
116
+     * Get the route key for the model.
117
+     *
118
+     * @return string
119
+     */
120 120
 public function getRouteKeyName()
121 121
 {
122 122
     return 'username';
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function getFullNameAttribute($value)
71 71
     {
72
-        return ucfirst($this->first_name) . ' ' . ucfirst($this->last_name);
72
+        return ucfirst($this->first_name).' '.ucfirst($this->last_name);
73 73
     }
74 74
 
75 75
     /**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
     public function getIsActiveAttribute()
111 111
     {
112
-        return $this->attributes['active'] == true;
112
+        return $this->attributes[ 'active' ] == true;
113 113
     }
114 114
 
115 115
     /**
Please login to merge, or discard this patch.