Passed
Push — main ( 6013cc...2e9e01 )
by PRATIK
22:33 queued 18:16
created
src/Repositories/TeamRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function indexTeam()
14 14
     {
15 15
         $teams = config('adminetic.caching', true)
16
-            ? (Cache::has('teams') ? Cache::get('teams') : Cache::rememberForever('teams', function () {
16
+            ? (Cache::has('teams') ? Cache::get('teams') : Cache::rememberForever('teams', function() {
17 17
                 return Team::orderBy('position')->get();
18 18
             }))
19 19
             : Team::orderBy('position')->get();
Please login to merge, or discard this patch.