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

Completed
Push — development ( 75190c...48cdf7 )
by José
02:40
created
app/Exceptions/Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     protected function unauthenticated($request, AuthenticationException $exception)
58 58
     {
59 59
         if ($request->expectsJson()) {
60
-            return response()->json(['error' => 'Unauthenticated.'], 401);
60
+            return response()->json([ 'error' => 'Unauthenticated.' ], 401);
61 61
         }
62 62
 
63 63
         return redirect()->guest('login');
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@
 block discarded – undo
67 67
     {
68 68
         return User::create(
69 69
             [
70
-            'name' => $data['name'],
71
-            'email' => $data['email'],
72
-            'username' => $data['username'],
73
-            'password' => bcrypt($data['password']),
70
+            'name' => $data[ 'name' ],
71
+            'email' => $data[ 'email' ],
72
+            'username' => $data[ 'username' ],
73
+            'password' => bcrypt($data[ 'password' ]),
74 74
             ]
75 75
         );
76 76
 
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
      */
35 35
     public function __construct()
36 36
     {
37
-        $this->middleware('guest', ['except' => 'logout']);
37
+        $this->middleware('guest', [ 'except' => 'logout' ]);
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
          * Authenticate the user's personal channel...
21 21
          */
22 22
         Broadcast::channel(
23
-            'App.User.*', function ($user, $userId) {
23
+            'App.User.*', function($user, $userId) {
24 24
                 return (int) $user->id === (int) $userId;
25 25
             }
26 26
         );
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             [
56 56
             'middleware' => 'web',
57 57
             'namespace' => $this->namespace,
58
-            ], function ($router) {
58
+            ], function($router) {
59 59
                 include base_path('routes/web.php');
60 60
             }
61 61
         );
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             'middleware' => 'api',
76 76
             'namespace' => $this->namespace,
77 77
             'prefix' => 'api',
78
-            ], function ($router) {
78
+            ], function($router) {
79 79
                 include base_path('routes/api.php');
80 80
             }
81 81
         );
Please login to merge, or discard this patch.
app/Post.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,5 +18,5 @@
 block discarded – undo
18 18
      *
19 19
      * @var array
20 20
      */
21
-    protected $filliable = ['titulo', 'conteudo', 'imagem', 'autor_id'];
21
+    protected $filliable = [ 'titulo', 'conteudo', 'imagem', 'autor_id' ];
22 22
 }
Please login to merge, or discard this patch.
app/Doador.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,5 +8,5 @@
 block discarded – undo
8 8
 {
9 9
     protected $table = 'doadores';
10 10
 
11
-    protected $filliable = ['user_id', 'bio', ''];
11
+    protected $filliable = [ 'user_id', 'bio', '' ];
12 12
 }
Please login to merge, or discard this patch.
app/Http/Controllers/UsersController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
27 27
         );
28 28
 
29 29
       $usuario = new User();
30
-      $usuario->name = $request['name'];
31
-      $usuario->email = $request['email'];
32
-      $usuario->password = $request['password'];
33
-      $usuario->username = $request['username'];
34
-      $usuario->bio = $request['bio'];
35
-      $usuario->telefone = $request['telefone'];
30
+      $usuario->name = $request[ 'name' ];
31
+      $usuario->email = $request[ 'email' ];
32
+      $usuario->password = $request[ 'password' ];
33
+      $usuario->username = $request[ 'username' ];
34
+      $usuario->bio = $request[ 'bio' ];
35
+      $usuario->telefone = $request[ 'telefone' ];
36 36
       $usuario->save();
37 37
 
38 38
       return redirect()->route('perfil');
Please login to merge, or discard this patch.
app/Http/Controllers/DoadoresController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      * @return bool
17 17
      */
18 18
 
19
-    public function index(){
19
+    public function index() {
20 20
       $doadores = Doador::orderBy('id', 'desc')->get();
21 21
 
22 22
       return view('doadores.index', compact('doadores'));
Please login to merge, or discard this patch.