Final Class Yiisoft\Config\Command\RebuildCommand
| Inheritance | Yiisoft\Config\Command\RebuildCommand » Composer\Command\BaseCommand |
|---|
RebuildCommand crawls all the configuration files and updates the merge plan file.
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| configure() | Yiisoft\Config\Command\RebuildCommand | |
| execute() | Yiisoft\Config\Command\RebuildCommand |
Method Details
| protected configure( ): void |
protected function configure(): void
{
$this
->setName('yii-config-rebuild')
->setDescription('Crawls all the configuration files and updates the merge plan file.')
->setHelp('This command crawls all the configuration files and updates the merge plan file.')
;
}
| protected execute( \Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output ): integer | ||
| $input | \Symfony\Component\Console\Input\InputInterface | |
| $output | \Symfony\Component\Console\Output\OutputInterface | |
protected function execute(InputInterface $input, OutputInterface $output): int
{
new MergePlanProcess($this->requireComposer());
return 0;
}
Signup or Login in order to comment.