1 | <?php namespace Cerbero\Auth; |
||
10 | class AuthServiceProvider extends ServiceProvider { |
||
11 | |||
12 | /** |
||
13 | * Boot up the package. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function boot() |
||
29 | |||
30 | /** |
||
31 | * Register the service provider. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function register() |
||
45 | |||
46 | /** |
||
47 | * Register the user repository. |
||
48 | * |
||
49 | * @author Andrea Marco Sartori |
||
50 | * @return void |
||
51 | */ |
||
52 | private function registerUserRepository() |
||
58 | |||
59 | /** |
||
60 | * Register the login throttling service. |
||
61 | * |
||
62 | * @author Andrea Marco Sartori |
||
63 | * @return void |
||
64 | */ |
||
65 | private function registerThrottler() |
||
71 | |||
72 | /** |
||
73 | * Register the dispatcher service. |
||
74 | * |
||
75 | * @author Andrea Marco Sartori |
||
76 | * @return void |
||
77 | */ |
||
78 | private function registerDispatcher() |
||
84 | |||
85 | } |
||
86 |