Final Class Yiisoft\Config\Command\RebuildCommand
| Inheritance | Yiisoft\ |
|---|
RebuildCommand crawls all the configuration files and updates the merge plan file.
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| configure() | Yiisoft\ |
|
| execute() | Yiisoft\ |
Method Details
| protected void configure ( ) |
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 integer execute ( \ | ||
| $input | \ |
|
| $output | \ |
|
protected function execute(InputInterface $input, OutputInterface $output): int
{
new MergePlanProcess($this->requireComposer());
return 0;
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.