예제 #1
0
 public function init()
 {
     parent::init();
     $this->command('setup');
     $this->command('start');
     $this->command('stop');
 }
예제 #2
0
 public function init()
 {
     parent::init();
     $this->command('build');
     $this->command('list');
     $this->command('clean');
 }
예제 #3
0
 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');
 }
예제 #4
0
 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();
     }
 }
예제 #5
0
 /**
  * register your command here
  */
 public function init()
 {
     parent::init();
     $this->command('sub-example');
 }
예제 #6
0
 public function init()
 {
     parent::init();
     $this->command('parse', 'Phifty\\Command\\LocaleParseCommand');
     $this->command('update', 'Phifty\\Command\\LocaleUpdateCommand');
 }
예제 #7
0
 public function init()
 {
     parent::init();
     $this->command('get');
     $this->command('list');
 }