public function init() { parent::init(); $this->command('setup'); $this->command('start'); $this->command('stop'); }
public function init() { parent::init(); $this->command('build'); $this->command('list'); $this->command('clean'); }
public function init() { parent::init(); $this->command('build', 'LazyRecord\\Command\\BuildSchemaCommand'); $this->command('sql', 'LazyRecord\\Command\\BuildSqlCommand'); $this->command('list', 'LazyRecord\\Command\\ListSchemaCommand'); $this->command('clean', 'LazyRecord\\Command\\CleanSchemaCommand'); }
public function init() { parent::init(); // softly load the config file. $this->config = ConfigLoader::getInstance(); $this->config->loadFromSymbol(true); // force loading if ($this->config->isLoaded()) { $this->config->initForBuild(); } }
/** * register your command here */ public function init() { parent::init(); $this->command('sub-example'); }
public function init() { parent::init(); $this->command('parse', 'Phifty\\Command\\LocaleParseCommand'); $this->command('update', 'Phifty\\Command\\LocaleUpdateCommand'); }
public function init() { parent::init(); $this->command('get'); $this->command('list'); }