Passed
Push — main ( 99e7c7...81a08a )
by PRATIK
08:08 queued 02:42
created
src/Repositories/ImageRepository.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 indexImage()
14 14
     {
15 15
         $images = config('adminetic.caching', true)
16
-            ? (Cache::has('images') ? Cache::get('images') : Cache::rememberForever('images', function () {
16
+            ? (Cache::has('images') ? Cache::get('images') : Cache::rememberForever('images', function() {
17 17
                 return Image::latest()->get();
18 18
             }))
19 19
             : Image::latest()->get();
Please login to merge, or discard this patch.