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
Branch master (1c2d63)
by Ryun
04:35
created
src/Auth/AbstractDriver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
     protected $app;
14 14
 
15 15
 
16
+    /**
17
+     * @param \Illuminate\Foundation\Application $app
18
+     */
16 19
     public function __construct($app)
17 20
     {
18 21
         $this->app = $app;
Please login to merge, or discard this patch.
src/Http/Controllers/AuthController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Illuminate\Routing\Controller;
8 8
 use Illuminate\Session\SessionManager;
9 9
 use Laravel\Socialite\Facades\Socialite;
10
-use LGL\Core\Auth\Laravel\Facades\Sentinel;
11 10
 
12 11
 /**
13 12
  * AuthController
Please login to merge, or discard this patch.
database/migrations/2016_08_03_000001_create_social_auth_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('social_connections', function (Blueprint $table) {
15
+        Schema::create('social_connections', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('user_id')->unsigned()->nullable();
18 18
             $table->string('social_id', 127)->index();
Please login to merge, or discard this patch.
database/seeds/DatabaseSeeder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         $output->title('Starting Database Seed');
19 19
 
20 20
         //---------------- Create user database -------------
21
-        Schema::create('users', function (Blueprint $table) {
21
+        Schema::create('users', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('name');
24 24
             $table->string('email')->unique();
Please login to merge, or discard this patch.
database/factories/ModelFactory.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
-$factory->define(Humweb\Sociable\Tests\Stubs\User::class, function (Faker\Generator $faker) {
3
+$factory->define(Humweb\Sociable\Tests\Stubs\User::class, function(Faker\Generator $faker) {
4 4
     return [
5 5
         'name'           => $faker->name,
6 6
         'email'          => $faker->safeEmail,
Please login to merge, or discard this patch.
src/ServiceProvider.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
      */
21 21
     public function register()
22 22
     {
23
-        $this->app->singleton('social.auth', function ($app) {
23
+        $this->app->singleton('social.auth', function($app) {
24 24
             return new Manager($app);
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
src/Models/Sociable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     public function detachProviderByName($provider)
68 68
     {
69 69
         $count = 0;
70
-        $this->social()->ofProvider($provider)->get()->each(function (SocialConnection $social) use ($count) {
70
+        $this->social()->ofProvider($provider)->get()->each(function(SocialConnection $social) use ($count) {
71 71
             $count = $count + $social->delete();
72 72
         });
73 73
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     public function detachProviderById($provider)
86 86
     {
87 87
         $count = 0;
88
-        $this->social()->ofProviderId($provider)->get()->each(function (SocialConnection $social) use ($count) {
88
+        $this->social()->ofProviderId($provider)->get()->each(function(SocialConnection $social) use ($count) {
89 89
             $count = $count + $social->delete();
90 90
         });
91 91
 
Please login to merge, or discard this patch.
src/RouteServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function map(Router $router)
42 42
     {
43
-        $router->group(['namespace' => $this->namespace], function ($router) {
43
+        $router->group(['namespace' => $this->namespace], function($router) {
44 44
             require __DIR__.'/Http/routes.php';
45 45
         });
46 46
     }
Please login to merge, or discard this patch.