1 | <?php |
||
14 | class ServiceProvider extends Provider |
||
15 | { |
||
16 | /** |
||
17 | * Add an alias for the exception handler facade. |
||
18 | * |
||
19 | * @author Andrea Marco Sartori |
||
20 | * @return void |
||
21 | */ |
||
22 | public function boot() |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
40 | |||
41 | /** |
||
42 | * Create an alias for the Laravel default exception handler. |
||
43 | * |
||
44 | * @author Andrea Marco Sartori |
||
45 | * @return void |
||
46 | */ |
||
47 | private function aliasExceptionHandler() |
||
51 | |||
52 | /** |
||
53 | * Register the custom exception handlers repository. |
||
54 | * |
||
55 | * @author Andrea Marco Sartori |
||
56 | * @return void |
||
57 | */ |
||
58 | private function registerExceptionHandlersRepository() |
||
62 | |||
63 | /** |
||
64 | * Extend the Laravel default exception handler. |
||
65 | * |
||
66 | * @author Andrea Marco Sartori |
||
67 | * @return void |
||
68 | */ |
||
69 | private function extendExceptionHandler() |
||
75 | } |
||
76 |