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 ( e28514...ea8fea )
by Pieter
12:48
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/acivity-log.php' => config_path('activity-log.php'),
22
+        __DIR__ . '/../config/acivity-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.
database/migrations/2017_06_03_133219_create_activity_log_table.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@  discard block
 block discarded – undo
5 5
 
6 6
 class CreateActivityLogTable extends Migration {
7 7
     /**
8
-      * Run the migrations.
9
-      *
10
-      * @return void
11
-      */
8
+     * Run the migrations.
9
+     *
10
+     * @return void
11
+     */
12 12
     public function up()
13 13
     {
14 14
         Schema::create('activity_log', function(Blueprint $table)
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-      * Reverse the migrations.
39
-      *
40
-      * @return void
41
-      */
38
+     * Reverse the migrations.
39
+     *
40
+     * @return void
41
+     */
42 42
     public function down()
43 43
     {
44 44
         Schema::drop('activity_log');
Please login to merge, or discard this patch.