1 | <?php |
||
9 | class DatabaseServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Override the default connection for MySQL. This allows us to use `replace` etc. |
||
13 | * |
||
14 | * @link https://stidges.com/extending-the-connection-class-in-laravel |
||
15 | * @link https://gist.github.com/VinceG/0fb570925748ab35bc53f2a798cb517c |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function boot() |
||
29 | |||
30 | /** |
||
31 | * Register the service provider. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function register() |
||
42 | } |
||
43 |