GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Pull Request — master (#7)
by
unknown
06:24
created
src/Http/Middleware/Authorised.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Protoqol\Prequel\Http\Middleware;
6 6
 
Please login to merge, or discard this patch.
src/Http/Controllers/PrequelController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Protoqol\Prequel\Http\Controllers;
6 6
 
Please login to merge, or discard this patch.
src/Http/routes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 Route::namespace('Protoqol\Prequel\Http\Controllers')
6 6
     ->middleware('Protoqol\Prequel\Http\Middleware\Authorised')
7 7
     ->prefix(config('prequel.path'))
8
-    ->group(function () {
8
+    ->group(function() {
9 9
 
10 10
         /**
11 11
          * Main view route
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
         /**
17 17
          * API Routes.
18 18
          */
19
-        Route::prefix('prequel-api')->group(function () {
20
-            Route::prefix('database')->group(function () {
19
+        Route::prefix('prequel-api')->group(function() {
20
+            Route::prefix('database')->group(function() {
21 21
 
22 22
                 // Get data from table, data includes structure, actual data and table name.
23 23
                 Route::get(
Please login to merge, or discard this patch.
src/PrequelServiceProvider.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             dirname(__DIR__)
54 54
             .'/config/prequel.php' => config_path('prequel.php'),
55 55
         ],
56
-	'config');
56
+    'config');
57 57
 
58 58
         $this->mergeConfigFrom(
59 59
             dirname(__DIR__).'/config/prequel.php',
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Protoqol\Prequel\PrequelServiceProvider
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         $this->app->singleton(
33 33
             DatabaseTraverser::class,
34
-            function () {
34
+            function() {
35 35
                 return new DatabaseTraverser();
36 36
             }
37 37
         );
Please login to merge, or discard this patch.
src/Http/Controllers/DatabaseController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Protoqol\Prequel\Http\Controllers;
6 6
 
Please login to merge, or discard this patch.
src/Classes/Database/DatabaseTraverser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Protoqol\Prequel\Classes\Database;
6 6
 
Please login to merge, or discard this patch.