Passed
Push — develop ( 328304...2e13c6 )
by Henry
03:08
created
src/Models/Auth/Session.php 1 patch
Spacing   +6 added lines, -6 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
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     {
150 150
         // set handle
151 151
         if (!$this->__get('Handle')) {
152
-            $this->__set('Handle',static::generateUniqueHandle());
152
+            $this->__set('Handle', static::generateUniqueHandle());
153 153
         }
154 154
 
155 155
         // call parent
Please login to merge, or discard this patch.