Passed
Push — main ( 986963...d28977 )
by Marco Aurélio
07:38 queued 04:41
created
src/NativeSessionServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
 {
12 12
     public function register()
13 13
     {
14
-        Auth::provider(NativeSessionUserProvider::class, function () {
14
+        Auth::provider(NativeSessionUserProvider::class, function() {
15 15
             return $this->app->make(NativeSessionUserProvider::class);
16 16
         });
17 17
 
18
-        Auth::extend(NativeSessionGuard::class, function (Container $app) {
18
+        Auth::extend(NativeSessionGuard::class, function(Container $app) {
19 19
             return $app->make(NativeSessionGuard::class);
20 20
         });
21 21
 
22
-        $this->app->bind(SessionRetriever::class, function () {
22
+        $this->app->bind(SessionRetriever::class, function() {
23 23
             $config = $this->app->make(Repository::class);
24 24
             $path = $config->get('auth.guards.php.storage');
25 25
 
Please login to merge, or discard this patch.