@@ -9,7 +9,7 @@ |
||
| 9 | 9 | { |
| 10 | 10 | //return PhpResponsiveQuote::getRandomQuote(); |
| 11 | 11 | |
| 12 | - return view('php-responsive-quote::joke',[ |
|
| 12 | + return view('php-responsive-quote::joke', [ |
|
| 13 | 13 | 'joke' => PhpResponsiveQuote::getRandomQuote() |
| 14 | 14 | ]); |
| 15 | 15 | } |
@@ -16,18 +16,18 @@ discard block |
||
| 16 | 16 | { |
| 17 | 17 | if ($this->app->runningInConsole()) { |
| 18 | 18 | $this->commands([ |
| 19 | - ResponsiveQuote::class, //the console class |
|
| 19 | + ResponsiveQuote::class, //the console class |
|
| 20 | 20 | ]); |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | - $this->loadViewsFrom(__DIR__ . '/../resources/views', 'php-responsive-quote'); |
|
| 23 | + $this->loadViewsFrom(__DIR__.'/../resources/views', 'php-responsive-quote'); |
|
| 24 | 24 | |
| 25 | 25 | $this->publishes([ |
| 26 | - __DIR__ . '/../resources/views' => resource_path('views/vendor/responsive-quotes/') |
|
| 26 | + __DIR__.'/../resources/views' => resource_path('views/vendor/responsive-quotes/') |
|
| 27 | 27 | ], 'views'); |
| 28 | 28 | |
| 29 | 29 | $this->publishes([ |
| 30 | - __DIR__ . '/../config/random-quote.php' => base_path('config/random-quote.php') |
|
| 30 | + __DIR__.'/../config/random-quote.php' => base_path('config/random-quote.php') |
|
| 31 | 31 | ], 'config'); |
| 32 | 32 | |
| 33 | 33 | $this->publishes([ |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | public function register() |
| 41 | 41 | { |
| 42 | - $this->app->bind('php-responsive-quote', function () { |
|
| 42 | + $this->app->bind('php-responsive-quote', function() { |
|
| 43 | 43 | return new QuoteFactory(); |
| 44 | 44 | }); |
| 45 | 45 | |