app->make('routePath')->loadRouterFrom($this->loadRouteFrom()); $this->registerEvents(); $this->registerCommands(); $this->registerConfig(); } /** * 事件注册 * * @time 2020年06月24日 * @return void */ protected function registerEvents() { if (method_exists($this, 'loadEvents')) { $this->app->event->listenEvents($this->loadEvents()); } } /** * register config * * @time 2020年09月25日 * @return void */ protected function registerConfig() { if (method_exists($this, 'loadConfig')) { $this->app->config->set(array_merge($this->app->config->get('catch'), $this->loadConfig()), 'catch'); } } /** * 注册commands * * @time 2020年07月02日 * @return void */ protected function registerCommands() { if (method_exists($this,'loadCommands') && $this->app->runningInConsole()) { list($namespace, $path) = $this->loadCommands(); if ($this->app->has('catch\console')) { $catchConsole = $this->app['catch\console']; $this->commands($catchConsole->setNamespace($namespace) ->path($path) ->commands()); } } } }