Completed
Push — master ( 2c5497...f0a77c )
by PROSPER
02:08
created
src/Facades/Quotes.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
6 6
 
7 7
 class Quotes extends Facade {
8 8
     /**
9
-   * Get the registered name of the component.
10
-   *
11
-   * @return string
12
-   */
9
+     * Get the registered name of the component.
10
+     *
11
+     * @return string
12
+     */
13 13
     protected static function getFacadeAccessor()
14 14
     {
15 15
         return 'laravel-quotes';
Please login to merge, or discard this patch.
src/QuotesServiceProvider.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@  discard block
 block discarded – undo
15 15
     protected $defer = false;
16 16
 
17 17
     /**
18
-    * Register the application services.
19
-    *
20
-    * @return void
21
-    */
18
+     * Register the application services.
19
+     *
20
+     * @return void
21
+     */
22 22
     public function register()
23 23
     {
24 24
       $this->app->bind('laravel-quotes', function() {
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
     }
30 30
 
31 31
     /**
32
-    * Get the services provided by the provider
33
-    * @return array
34
-    */
32
+     * Get the services provided by the provider
33
+     * @return array
34
+     */
35 35
     public function provides()
36 36
     {
37 37
       return ['laravel-quotes'];
Please login to merge, or discard this patch.