Completed
Push — master ( faf626...5021ae )
by he
07:04
created
app/Services/Ranking.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 
64 64
         /** @var $result Team[] */
65 65
         $result = array_values($this->teams);
66
-        usort($result, function ($team1, $team2) {
66
+        usort($result, function($team1, $team2) {
67 67
             return !$this->isBetter($team1, $team2);
68 68
         });
69 69
 
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
     {
59 59
         Route::prefix('judge')
60 60
             // ->middleware('judge')
61
-             ->namespace($this->namespace)
62
-             ->group(base_path('routes/judge.php'));
61
+                ->namespace($this->namespace)
62
+                ->group(base_path('routes/judge.php'));
63 63
     }
64 64
 
65 65
     /**
@@ -72,15 +72,15 @@  discard block
 block discarded – undo
72 72
     protected function mapWebRoutes()
73 73
     {
74 74
         Route::middleware('web')
75
-             ->namespace($this->namespace)
76
-             ->group(base_path('routes/web.php'));
75
+                ->namespace($this->namespace)
76
+                ->group(base_path('routes/web.php'));
77 77
     }
78 78
 
79 79
     private function mapAdminRoutes()
80 80
     {
81 81
         Route::prefix('admin')
82
-             ->middleware('admin')
83
-             ->namespace($this->namespace)
84
-             ->group(base_path('routes/admin.php'));
82
+                ->middleware('admin')
83
+                ->namespace($this->namespace)
84
+                ->group(base_path('routes/admin.php'));
85 85
     }
86 86
 }
Please login to merge, or discard this patch.