Owl\Providers\EventServiceProvider::registerSubscriber PHP Method

registerSubscriber() protected method

イベントハンドラーをSubscriberに登録
protected registerSubscriber ( )
    protected function registerSubscriber()
    {
        // メール送信イベントハンドラー
        if (config('notification.enabled')) {
            \Event::subscribe('\\Owl\\Handlers\\Events\\EmailNotification');
        }
        // Slack通知イベントハンドラー
        $slack_webhook_url = config('notification.slack.webhook_url');
        // for PHP <= 5.4
        if (config('notification.slack.enabled') && !empty($slack_webhook_url)) {
            \Event::subscribe('\\Owl\\Handlers\\Events\\SlackNotification');
        }
    }
EventServiceProvider