Go\Console\Command\BaseAspectCommand::configure PHP Method

configure() protected method

{@inheritDoc}
protected configure ( )
    protected function configure()
    {
        $this->addArgument('loader', InputArgument::REQUIRED, "Path to the aspect loader file");
    }

Usage Example

Exemplo n.º 1
0
    /**
     * {@inheritDoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('debug:advisor')->addOption('advisor', null, InputOption::VALUE_OPTIONAL, "Identifier of advisor")->setDescription("Provides an interface for checking and debugging advisors")->setHelp(<<<EOT
Allows to query an information about matching joinpoints for specified advisor.
EOT
);
    }
All Usage Examples Of Go\Console\Command\BaseAspectCommand::configure
BaseAspectCommand