| 1 | <?php |
||
| 9 | class RunescapeServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Indicates if loading of the provider is deferred. |
||
| 13 | * |
||
| 14 | * @var bool |
||
| 15 | */ |
||
| 16 | protected $defer = false; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Bootstrap the application events. |
||
| 20 | * |
||
| 21 | * @return void |
||
| 22 | */ |
||
| 23 | public function boot() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Register the service provider. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function register() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Get the services provided by the provider. |
||
| 46 | * |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | public function provides() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Register the runescape_display_name validation rule with Laravel's validator |
||
| 56 | * |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | public function registerCustomValidators() |
||
| 63 | } |
||
| 64 |