Kirby\Cli\Command\Make::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('make:' . $this->what)->addArgument('name', InputArgument::REQUIRED, $this->help)->setDescription($this->info);
    }

Usage Example

Example #1
0
 protected function configure()
 {
     parent::configure();
     $this->addOption('bare', 'b', InputOption::VALUE_NONE, 'Set to create a bare blueprint, without running the blueprint builder');
 }