Passed
Push — master ( ec340f...4eec0e )
by Morteza
01:27
created
src/Http/Controllers/LaraLogController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
         $logQuery = $request->input('log');
30 30
 
31
-        if (isset($logQuery) && (! is_null($logQuery)) && array_key_exists($logQuery, $this->dailyLogs)) {
31
+        if (isset($logQuery) && (!is_null($logQuery)) && array_key_exists($logQuery, $this->dailyLogs)) {
32 32
             $currentLog = $logQuery;
33 33
         } elseif (file_exists(storage_path('logs/laravel.log'))) {
34 34
             $currentLog = 'laravel';
@@ -41,14 +41,14 @@  discard block
 block discarded – undo
41 41
             $logsCollection = collect($singleLogs);
42 42
             $perPage = 5;
43 43
             $currentPageItems = $logsCollection->slice(($currentPage * $perPage) - $perPage, $perPage)->all();
44
-            $paginatedSingleLogs = new LengthAwarePaginator($currentPageItems , count($logsCollection), $perPage);
44
+            $paginatedSingleLogs = new LengthAwarePaginator($currentPageItems, count($logsCollection), $perPage);
45 45
             $paginatedSingleLogs->setPath($request->url());
46 46
         } else {
47 47
             $currentPage = LengthAwarePaginator::resolveCurrentPage();
48 48
             $logsCollection = collect(array_reverse($dailyLogs[$logQuery]));
49 49
             $perPage = 5;
50 50
             $currentPageItems = $logsCollection->slice(($currentPage * $perPage) - $perPage, $perPage)->all();
51
-            $paginatedDailyLogs = new LengthAwarePaginator($currentPageItems , count($logsCollection), $perPage);
51
+            $paginatedDailyLogs = new LengthAwarePaginator($currentPageItems, count($logsCollection), $perPage);
52 52
             $paginatedDailyLogs->setPath('logs?log=' . $currentLog);
53 53
         }
54 54
 
Please login to merge, or discard this patch.