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 ( ea8fea...ce2354 )
by Pieter
21:52 queued 10:01
created
src/ActivityLogServiceProvider.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -3,43 +3,43 @@
 block discarded – undo
3 3
 use Illuminate\Support\ServiceProvider;
4 4
 
5 5
 class ActivityLogServiceProvider extends ServiceProvider {
6
-  /**
7
-   * Indicates if loading of the provider is deferred.
8
-   *
9
-   * @var bool
10
-   */
11
-  protected $defer = false;
6
+    /**
7
+     * Indicates if loading of the provider is deferred.
8
+     *
9
+     * @var bool
10
+     */
11
+    protected $defer = false;
12 12
 
13
-  /**
14
-   * Bootstrap the application events.
15
-   *
16
-   * @return void
17
-   */
18
-  public function boot()
19
-  {
13
+    /**
14
+     * Bootstrap the application events.
15
+     *
16
+     * @return void
17
+     */
18
+    public function boot()
19
+    {
20 20
     $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
21 21
     $this->publishes([
22
-      __DIR__ . '/../config/activity-log.php' => config_path('activity-log.php'),
22
+        __DIR__ . '/../config/activity-log.php' => config_path('activity-log.php'),
23 23
     ]);
24
-  }
24
+    }
25 25
 
26
-  /**
27
-   * Register the service provider.
28
-   *
29
-   * @return void
30
-   */
31
-  public function register()
32
-  {
26
+    /**
27
+     * Register the service provider.
28
+     *
29
+     * @return void
30
+     */
31
+    public function register()
32
+    {
33 33
     $this->mergeConfigFrom(__DIR__ . '/../config/activity-log.php', 'activity-log');
34
-  }
34
+    }
35 35
 
36
-  /**
37
-   * Get the services provided by the provider.
38
-   *
39
-   * @return array
40
-   */
41
-  public function provides()
42
-  {
36
+    /**
37
+     * Get the services provided by the provider.
38
+     *
39
+     * @return array
40
+     */
41
+    public function provides()
42
+    {
43 43
     return [];
44
-  }
44
+    }
45 45
 }
Please login to merge, or discard this patch.