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.
Completed
Push — master ( a409ed...508770 )
by Aden
10:44 queued 04:29
created
src/Flare/FlareServiceProvider.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -15,20 +15,20 @@  discard block
 block discarded – undo
15 15
     {
16 16
         // Assets
17 17
         $this->publishes([
18
-            __DIR__.'/../public/flare' => public_path('vendor/flare'),
19
-            __DIR__.'/../public/AdminLTE/bootstrap' => public_path('vendor/flare/bootstrap'),
20
-            __DIR__.'/../public/AdminLTE/dist' => public_path('vendor/flare'),
21
-            __DIR__.'/../public/AdminLTE/plugins' => public_path('vendor/flare/plugins'),
18
+            __DIR__ . '/../public/flare' => public_path('vendor/flare'),
19
+            __DIR__ . '/../public/AdminLTE/bootstrap' => public_path('vendor/flare/bootstrap'),
20
+            __DIR__ . '/../public/AdminLTE/dist' => public_path('vendor/flare'),
21
+            __DIR__ . '/../public/AdminLTE/plugins' => public_path('vendor/flare/plugins'),
22 22
         ], 'public');
23 23
 
24 24
         // Config
25 25
         $this->publishes([
26
-            __DIR__.'/../config/flare.php' => config_path('flare.php'),
26
+            __DIR__ . '/../config/flare.php' => config_path('flare.php'),
27 27
         ]);
28 28
 
29 29
         // Database Migrations
30 30
         $this->publishes([
31
-            __DIR__.'/Database/Migrations' => base_path('database/migrations'),
31
+            __DIR__ . '/Database/Migrations' => base_path('database/migrations'),
32 32
         ]);
33 33
 
34 34
         // Middleware
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
 
42 42
         // Routes
43 43
         if (!$this->app->routesAreCached()) {
44
-            require __DIR__.'/Http/routes.php';
44
+            require __DIR__ . '/Http/routes.php';
45 45
         }
46 46
 
47 47
         // Views
48
-        $this->loadViewsFrom(__DIR__.'/../resources/views', 'flare');
48
+        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'flare');
49 49
         $this->publishes([
50
-            __DIR__.'/../resources/views' => base_path('resources/views/vendor/flare'),
50
+            __DIR__ . '/../resources/views' => base_path('resources/views/vendor/flare'),
51 51
         ]);
52 52
 
53 53
         $this->registerBladeOperators();
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         // Merge Config 
62 62
         $this->mergeConfigFrom(
63
-            __DIR__.'/../config/flare.php', 'flare'
63
+            __DIR__ . '/../config/flare.php', 'flare'
64 64
         );
65 65
 
66 66
         $this->registerServiceProviders();
Please login to merge, or discard this patch.