Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function register() |
||
23 | { |
||
24 | $this->mergeConfigFrom(__DIR__.'/../config/server-monitor-plugin-notification-by-host.php', 'server-monitor-plugin-notification-by-host'); |
||
25 | |||
26 | $this->app->bind('command.server-monitor:add-notification-host', AddNotificationByHost::class); |
||
27 | $this->app->bind('command.server-monitor:list-notifications', ListNotifications::class); |
||
28 | |||
29 | $this->commands([ |
||
30 | 'command.server-monitor:add-notification-host', |
||
31 | 'command.server-monitor:list-notifications', |
||
32 | ]); |
||
35 |