@@ -18,7 +18,7 @@ discard block |
||
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 |
||
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 |
||
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 | }); |