command('inspire') // ->hourly(); } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { require base_path('routes/console.php'); if ($this->app->environment() !== 'production') { require base_path('routes/dev-console.php'); } } protected function getArtisan() { if (is_null($this->artisan)) { parent::getArtisan(); $this->artisan->setName(\LibreNMS\Config::get('project_name', 'LibreNMS')); $this->artisan->setVersion(Version::get()->local()); } return $this->artisan; } }