Example #1
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Check syntax the php files of sourcecode files');
     $this->addOption('fix', null, InputOption::VALUE_NONE, 'Tries to fix as much coding standards problems as possible.');
     $this->addOption('level', null, InputOption::VALUE_REQUIRED, 'The level of fixes (can be psr0, psr1, psr2, or symfony (formerly all))', 'symfony');
     parent::configure();
 }
Example #2
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setDescription('Static code analysis the sass files of sourcecode files');
     $this->addOption('formatter', null, InputOption::VALUE_REQUIRED, 'Output format Default|Files|JSON|Checkstyle (see [Formatters](https://github.com/brigade/scss-lint#formatters))', 'JSON');
     $this->addOption('no-copy-global-config-file', null, InputOption::VALUE_NONE, 'Disable the copy of the global config file to the home directory.');
     $this->addOption('open-report-file', null, InputOption::VALUE_NONE, 'No open the report file.');
 }
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Gives metrics about PHP project and classes for to one or all projects');
     parent::configure();
 }
Example #4
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Static code analysis the php files of sourcecode files');
     parent::configure();
 }
Example #5
0
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Generates the PHP API documentation for to one or all projects');
     parent::configure();
 }
 protected function configure()
 {
     $this->setDescription('Creates a dependency graph for the given project');
     $this->addOption('only-vendor-name', null, InputOption::VALUE_REQUIRED, 'Only display graph for package with this vendor name');
     $this->addOption('format', null, InputOption::VALUE_REQUIRED, 'File format (pdf, svg, png, jpeg)', 'pdf');
     $this->addOption('no-composer-install', null, InputOption::VALUE_NONE, 'Not execute composer install before generation graph');
     parent::configure();
 }