*/ class Application extends \CLIFramework\Application { /** * CLI Application name */ const NAME = 'Sakura'; /** * CLI Application version */ const VERSION = SAKURA_VERSION; /** * CLI initialiser */ public function init() { // Execute the original init function parent::init(); // Add commands with class reference because the autoloader is retarded $this->command('serve', Command\ServeCommand::class); } }