configure() protected method

{@inheritDoc}
protected configure ( )
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
);
    }
Exemplo n.º 2
0
    /**
     * {@inheritDoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('debug:aspect')->addOption('aspect', null, InputOption::VALUE_OPTIONAL, "Optional aspect name to filter")->setDescription("Provides an interface for querying the information about aspects")->setHelp(<<<EOT
Allows to query an information about enabled aspects.
EOT
);
    }
Exemplo n.º 3
0
    /**
     * {@inheritDoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('cache:warmup:aop')->setDescription("Warm up the cache with woven aspects")->setHelp(<<<EOT
Initializes the kernel and, if successful, warm up the cache for PHP
files under the application directory.

By default, the cache directory is taken from configured AspectKernel class.
EOT
);
    }