Completed
Push — master ( f6b67a...b50d1b )
by Davide
06:30 queued 01:33
created
src/Http/Controllers/ResponsiveQuoteController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/PhpResponsiveRandomQuoteServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,18 +16,18 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         
Please login to merge, or discard this patch.