コード例 #1
0
ファイル: Kernel.php プロジェクト: notadd/framework
 /**
  * Get the Artisan application instance.
  *
  * @return \Notadd\Foundation\Console\Application
  */
 public function getArtisan()
 {
     if (is_null($this->artisan)) {
         return $this->artisan = (new Artisan($this->app, $this->events, $this->app->version()))->resolveCommands($this->commands);
     }
     return $this->artisan;
 }