Completed
Push — development ( 0bb306...d407d6 )
by Claudio
07:17 queued 04:31
created
app/Models/User.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     {
140 140
         $ban = Ban::where('user_id', $this->attributes['id'])->first();
141 141
         
142
-        if($ban == null) {
142
+        if ($ban == null) {
143 143
             return false;
144 144
         }
145 145
         
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
     {
293 293
         $accountCreated = $this->attributes['account_created'] ?? time();
294 294
 
295
-        return date('Y-m-d', $accountCreated).'T'.date('H:i:s.ZZZZ+ZZZZ', $accountCreated);
295
+        return date('Y-m-d', $accountCreated) . 'T' . date('H:i:s.ZZZZ+ZZZZ', $accountCreated);
296 296
     }
297 297
 
298 298
     /**
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
     {
305 305
         $accountCreated = $this->attributes['account_created'] ?? time();
306 306
 
307
-        return date('Y-m-d', $accountCreated).'T'.date('H:i:s.ZZZZ+ZZZZ', $accountCreated);
307
+        return date('Y-m-d', $accountCreated) . 'T' . date('H:i:s.ZZZZ+ZZZZ', $accountCreated);
308 308
     }
309 309
 
310 310
     /**
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
     {
327 327
         $lastLogin = $this->attributes['last_login'] ?? time();
328 328
 
329
-        return date('Y-m-d', $lastLogin).'T'.date('H:i:s.ZZZZ+ZZZZ', $lastLogin);
329
+        return date('Y-m-d', $lastLogin) . 'T' . date('H:i:s.ZZZZ+ZZZZ', $lastLogin);
330 330
     }
331 331
 
332 332
     /**
Please login to merge, or discard this patch.