Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class AmqpRouteMessengerServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot(): void |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__ . '/../config.php' => config_path('amqproutemessenger.php'), |
||
18 | ], 'amqproutemessenger-config'); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Register any application services.; |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function register(): void |
||
29 | } |
||
30 | } |
||
31 |