Completed
Push — master ( dac97e...6afef5 )
by Dan Michael O.
16:47
created
app/Providers/CoverCacheServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@
 block discarded – undo
25 25
      */
26 26
     public function register()
27 27
     {
28
-        $this->app->singleton(CoverCache::class, function () {
28
+        $this->app->singleton(CoverCache::class, function() {
29 29
             $fs = \Storage::disk('s3')->getAdapter();
30 30
             $im = $this->app->make(ImageManager::class);
31 31
             $conf = new FlysystemConfig([
32 32
                 // Default: 30 days
33
-                'CacheControl' => 'max-age=' . env('IMAGE_CACHE_TIME', 3153600) . ', public',
33
+                'CacheControl' => 'max-age='.env('IMAGE_CACHE_TIME', 3153600).', public',
34 34
             ]);
35 35
             $http = $this->app->make(HttpClient::class);
36 36
             $messageFactory = $this->app->make(MessageFactory::class);
Please login to merge, or discard this patch.