@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | public function boot() |
17 | 17 | { |
18 | 18 | $this->publishes([ |
19 | - __DIR__ . '/config/laravel-random.php' => config_path('laravel-random.php'), |
|
19 | + __DIR__.'/config/laravel-random.php' => config_path('laravel-random.php'), |
|
20 | 20 | ]); |
21 | 21 | } |
22 | 22 | |
@@ -27,9 +27,9 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function register() |
29 | 29 | { |
30 | - $this->mergeConfigFrom(__DIR__ . '/config/laravel-random.php', 'laravel-random'); |
|
30 | + $this->mergeConfigFrom(__DIR__.'/config/laravel-random.php', 'laravel-random'); |
|
31 | 31 | |
32 | - $this->app->singleton('random', function ($app) { |
|
32 | + $this->app->singleton('random', function($app) { |
|
33 | 33 | $factory = new \RandomLib\Factory; |
34 | 34 | |
35 | 35 | $strength = $app['config']->get('laravel-random.strength'); |