コード例 #1
0
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('use-case')->setDescription('creates an use-case diagram from a file')->setHelp(<<<EOT
The <info>use-case</info> command generates an use-case diagram from a file

<info>yuml-php use-case src/use-cases.txt</info> builds an use-case diagram for the file
EOT
);
    }
コード例 #2
0
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('activity')->setDescription('creates an activity diagram from a file')->setHelp(<<<EOT
The <info>activity</info> command generates an activity diagram from a file

<info>yuml-php activity src/activities.txt</info> builds an activity diagram for the file
EOT
);
    }
コード例 #3
0
 protected function configure()
 {
     parent::configure();
     $this->setName('location:remove');
     $this->setDescription("Remove location context and it's configuration");
 }
コード例 #4
0
ファイル: CacheClearCommand.php プロジェクト: apitude/apitude
 public function configure()
 {
     parent::configure();
     $this->setName('cache:clear')->setDescription('Clears cache records');
 }
コード例 #5
0
 protected function configure()
 {
     parent::configure();
     $this->setName('upstream:add');
 }
コード例 #6
0
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('deployer:rollback')->setDescription('Rollbacks to the previous version');
 }
コード例 #7
0
 protected function configure()
 {
     parent::configure();
     $this->setName('upstream:server:remove');
     $this->setDescription("Removes server directive from upstream context and configuration");
 }
コード例 #8
0
 protected function configure()
 {
     parent::configure();
     $this->setName('upstream:server:add');
     $this->setDescription("Adds server directive to upstream context and configuration");
 }