| @@ -6,10 +6,10 @@ | ||
| 6 | 6 | |
| 7 | 7 |  class NgscFacade 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-ngsc'; | 
| @@ -6,33 +6,33 @@ | ||
| 6 | 6 | |
| 7 | 7 |  class NgscServiceProvider extends ServiceProvider { | 
| 8 | 8 | |
| 9 | - /* | |
| 9 | + /* | |
| 10 | 10 | * Indicates if loading of the provider is deferred. | 
| 11 | 11 | * | 
| 12 | 12 | * @var bool | 
| 13 | 13 | */ | 
| 14 | - protected $defer = false; | |
| 15 | - | |
| 16 | - /** | |
| 17 | - * Register the application services. | |
| 18 | - * | |
| 19 | - * @return void | |
| 20 | - */ | |
| 21 | - public function register() | |
| 22 | -  { | |
| 23 | -      $this->app->bind('laravel-ngsc', function() { | |
| 24 | - | |
| 25 | - return new Ngsc; | |
| 26 | - | |
| 27 | - }); | |
| 28 | - } | |
| 29 | - | |
| 30 | - /** | |
| 31 | - * Get the services provided by the provider | |
| 32 | - * @return array | |
| 33 | - */ | |
| 34 | - public function provides() | |
| 35 | -  { | |
| 36 | - return ['laravel-ngsc']; | |
| 37 | - } | |
| 14 | + protected $defer = false; | |
| 15 | + | |
| 16 | + /** | |
| 17 | + * Register the application services. | |
| 18 | + * | |
| 19 | + * @return void | |
| 20 | + */ | |
| 21 | + public function register() | |
| 22 | +    { | |
| 23 | +        $this->app->bind('laravel-ngsc', function() { | |
| 24 | + | |
| 25 | + return new Ngsc; | |
| 26 | + | |
| 27 | + }); | |
| 28 | + } | |
| 29 | + | |
| 30 | + /** | |
| 31 | + * Get the services provided by the provider | |
| 32 | + * @return array | |
| 33 | + */ | |
| 34 | + public function provides() | |
| 35 | +    { | |
| 36 | + return ['laravel-ngsc']; | |
| 37 | + } | |
| 38 | 38 | } | 
| 39 | 39 | \ No newline at end of file |