Test Failed
Push — develop ( 6a2e81...bfa563 )
by Henry
03:05
created
src/Models/Auth/Session.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,10 +52,10 @@  discard block
 block discarded – undo
52 52
     #[Column(unique:true)]
53 53
     protected $Handle;
54 54
 
55
-    #[Column(type:'timestamp',notnull:false)]
55
+    #[Column(type:'timestamp', notnull:false)]
56 56
     protected $LastRequest;
57 57
 
58
-    #[Column(type:'binary',length:16)]
58
+    #[Column(type:'binary', length:16)]
59 59
     protected $LastIP;
60 60
 
61 61
     /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             $Session->setFields($sessionData);
111 111
             if (function_exists('fastcgi_finish_request')) {
112 112
                 // @codeCoverageIgnoreStart
113
-                register_shutdown_function(function ($Session) {
113
+                register_shutdown_function(function($Session) {
114 114
                     $Session->save();
115 115
                 }, $Session);
116 116
             // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.