Completed
Push — master ( 888206...b6dc05 )
by Davide
03:38
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,7 +36,7 @@  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
     
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function register()
46 46
     {
47
-        $this->app->bind('php-responsive-quote', function () {
47
+        $this->app->bind('php-responsive-quote', function() {
48 48
             return new QuoteFactory();
49 49
         });
50 50
 
Please login to merge, or discard this patch.