Completed
Pull Request — master (#12)
by
unknown
06:39
created
app/Auth/Guard.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Facebook\FacebookSession;
9 9
 use Facebook\FacebookRequest;
10 10
 use Facebook\GraphUser;
11
-use Illuminate;
12 11
 use Illuminate\Support\Facades\Config;
13 12
 use Illuminate\Support\Facades\Auth;
14 13
 use Illuminate\Support\Facades\Session;
Please login to merge, or discard this patch.
app/Auth/AuthServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
      */
16 16
     protected function registerAuthenticator()
17 17
     {
18
-        $this->app->bind('auth', function ($app) {
18
+        $this->app->bind('auth', function($app) {
19 19
             // Once the authentication service has actually been requested by the developer
20 20
             // we will set a variable in the application indicating such. This helps us
21 21
             // know that we need to set any queued cookies in the after event later.
22 22
             $app['auth.loaded'] = true;
23 23
             return new AuthManager($app);
24 24
         });
25
-        $this->app->singleton('auth.driver', function ($app) {
25
+        $this->app->singleton('auth.driver', function($app) {
26 26
             return $app['auth']->guard();
27 27
         });
28 28
     }
Please login to merge, or discard this patch.