Passed
Push — main ( 3b6675...6bd19c )
by Greg
06:59
created
app/Http/RequestHandlers/SiteLogsPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,8 +71,8 @@
 block discarded – undo
71 71
         $this->layout = 'layouts/administration';
72 72
 
73 73
         // First and last change in the database
74
-        $earliest = DB::table('log')->min('log_time') ?? date('Y-m-d H:i:s');;
75
-        $latest   = DB::table('log')->max('log_time') ?? date('Y-m-d H:i:s');;
74
+        $earliest = DB::table('log')->min('log_time') ?? date('Y-m-d H:i:s'); ;
75
+        $latest   = DB::table('log')->max('log_time') ?? date('Y-m-d H:i:s'); ;
76 76
 
77 77
         $earliest = DateTimeImmutable::createFromFormat('Y-m-d H:i:s', $earliest, new DateTimeZone('UTC'))
78 78
             ->setTimezone(new DateTimeZone(Auth::user()->getPreference(UserInterface::PREF_TIME_ZONE, 'UTC')))
Please login to merge, or discard this patch.