예제 #1
0
파일: FixCommand.php 프로젝트: funivan/cs
 /**
  * @inheritdoc
  */
 protected function configure()
 {
     $this->setName('fix');
     $this->setDescription('Fix code according your code style');
     $this->addOption('save', null, InputOption::VALUE_NONE, 'By default we will show info without code modification');
     parent::configure();
 }
예제 #2
0
 /**
  * @inheritdoc
  */
 protected function configure()
 {
     $this->setName('review');
     $this->setDescription('Review source code according to your code style');
     parent::configure();
 }