Passed
Push — master ( 311f87...be4482 )
by John
05:32
created
app/Http/Middleware/TrustProxies.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
      *
20 20
      * @var int
21 21
      */
22
-    protected $headers = Request::HEADER_X_FORWARDED_ALL;
22
+    protected $headers=Request::HEADER_X_FORWARDED_ALL;
23 23
 }
Please login to merge, or discard this patch.
app/Http/Controllers/OAuth/AAuthController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
                 if (config('app.allow_oauth_temp_account')) {
81 81
                     try {
82 82
                         $createdUser=User::create([
83
-                            'name' => $aauth_user->name."#".substr($aauth_user->id , 0 , 4),
83
+                            'name' => $aauth_user->name."#".substr($aauth_user->id, 0, 4),
84 84
                             'email' => Str::random(16)."@temporary.email",
85 85
                             'password' => '',
86 86
                             'avatar' => '/static/img/avatar/default.png',
Please login to merge, or discard this patch.