Test Failed
Push — develop ( bfa563...328304 )
by Henry
03:19
created
src/Models/Auth/Session.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,16 +49,16 @@  discard block
 block discarded – undo
49 49
     #[Column(notnull: false, default:null)]
50 50
     protected $ContextClass;
51 51
 
52
-    #[Column(type:'int',notnull: false, default:null)]
52
+    #[Column(type:'int', notnull: false, default:null)]
53 53
     protected $ContextID;
54 54
 
55
-    #[Column(unique:true,length:32)]
55
+    #[Column(unique:true, length:32)]
56 56
     protected $Handle;
57 57
 
58
-    #[Column(type:'timestamp',notnull:false)]
58
+    #[Column(type:'timestamp', notnull:false)]
59 59
     protected $LastRequest;
60 60
 
61
-    #[Column(type:'binary',length:16)]
61
+    #[Column(type:'binary', length:16)]
62 62
     protected $LastIP;
63 63
 
64 64
     /**
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
             $Session->setFields($sessionData);
114 114
             if (function_exists('fastcgi_finish_request')) {
115 115
                 // @codeCoverageIgnoreStart
116
-                register_shutdown_function(function ($Session) {
116
+                register_shutdown_function(function($Session) {
117 117
                     $Session->save();
118 118
                 }, $Session);
119 119
             // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.