Completed
Pull Request — master (#70)
by
unknown
13:06
created
src/TmdbServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
 class TmdbServiceProvider extends ServiceProvider
20 20
 {
21
-    protected const CONFIG_PATH = __DIR__ . '/../config/tmdb.php';
21
+    protected const CONFIG_PATH = __DIR__.'/../config/tmdb.php';
22 22
 
23 23
     /**
24 24
      * Bootstrap the application events.
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             'Symfony\Component\EventDispatcher\EventDispatcher'
48 48
         );
49 49
 
50
-        $this->app->singleton(Client::class, function ($app) {
50
+        $this->app->singleton(Client::class, function($app) {
51 51
             if (!config()->has('tmdb.cache.handler')) {
52 52
                 $repository = app('cache')->store(config('tmdb.cache_store'));
53 53
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         });
68 68
 
69 69
         // bind the configuration (used by the image helper)
70
-        $this->app->bind(Configuration::class, function () {
70
+        $this->app->bind(Configuration::class, function() {
71 71
             $configuration = $this->app->make(ConfigurationRepository::class);
72 72
             return $configuration->load();
73 73
         });
Please login to merge, or discard this patch.