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