Completed
Push — master ( b6dc05...5a2822 )
by Davide
09:27 queued 06:23
created
src/PhpResponsiveRandomQuoteServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     {
14 14
         if ($this->app->runningInConsole()) {
15 15
             $this->commands([
16
-                ResponsiveQuote::class,  //the console class
16
+                ResponsiveQuote::class, //the console class
17 17
             ]);
18 18
         }
19 19
 
@@ -36,14 +36,14 @@  discard block
 block discarded – undo
36 36
         ], 'sass');
37 37
 
38 38
         //Route::get(config('random-quote.route'), ResponsiveQuoteController::class);
39
-        Route::group(['middleware' => 'web'], function () {
39
+        Route::group(['middleware' => 'web'], function() {
40 40
             Route::resource('php-responsive-quote', ResponsiveQuoteController::class);
41 41
         });
42 42
     }
43 43
 
44 44
     public function register()
45 45
     {
46
-        $this->app->bind('php-responsive-quote', function () {
46
+        $this->app->bind('php-responsive-quote', function() {
47 47
             return new QuoteFactory();
48 48
         });
49 49
 
Please login to merge, or discard this patch.