Completed
Push — master ( 0c603e...505b06 )
by Sergi Tur
02:19
created
src/SocialProviders/SocialProviderManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     /**
73 73
      * Build provider.
74 74
      *
75
-     * @param $provider
75
+     * @param string $provider
76 76
      * @return SocialProvider
77 77
      */
78 78
     public function buildProvider($provider)
Please login to merge, or discard this patch.
database/migrations/2014_10_12_400000_create_social_users_table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 /**
8 8
  * Class CreateSocialUsersTable.
Please login to merge, or discard this patch.
src/Http/Controllers/SocialProvidersController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 use Acacha\LaravelSocial\Contracts\Factory as SocialProviderFactory;
6 6
 use Acacha\LaravelSocial\Repositories\SocialUserRepository;
7 7
 use Illuminate\Contracts\Auth\Factory as AuthFactory;
8
+use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
8 9
 use Illuminate\Foundation\Auth\RedirectsUsers;
9
-use Illuminate\Routing\Controller;
10 10
 use Illuminate\Foundation\Bus\DispatchesJobs;
11 11
 use Illuminate\Foundation\Validation\ValidatesRequests;
12
-use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
12
+use Illuminate\Routing\Controller;
13 13
 
14 14
 /**
15 15
  * Class SocialProvidersController.
Please login to merge, or discard this patch.