1 | <?php namespace Arcanedev\LaravelAuth; |
||
12 | class LaravelAuthServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Package name. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $package = 'laravel-auth'; |
||
25 | |||
26 | /* ----------------------------------------------------------------- |
||
27 | | Main Methods |
||
28 | | ----------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | /** |
||
32 | * Register the service provider. |
||
33 | */ |
||
34 | 231 | public function register() |
|
44 | |||
45 | /** |
||
46 | * Boot the service provider. |
||
47 | */ |
||
48 | 231 | public function boot() |
|
57 | |||
58 | /** |
||
59 | * Get the services provided by the provider. |
||
60 | * |
||
61 | * @return array |
||
62 | */ |
||
63 | 3 | public function provides() |
|
69 | |||
70 | /* ----------------------------------------------------------------- |
||
71 | | Other Methods |
||
72 | | ----------------------------------------------------------------- |
||
73 | */ |
||
74 | |||
75 | /** |
||
76 | * Binding the models with the contracts. |
||
77 | */ |
||
78 | 231 | private function bindModels() |
|
91 | } |
||
92 |