mirror of
https://github.com/opdavies/build-configs.git
synced 2025-03-13 05:26:56 +00:00
Add the new command to the chain
This commit is contained in:
parent
05f7c2b609
commit
2a6718c650
|
@ -8,9 +8,11 @@ use App\Command\CreateFinalConfigurationDataCommand;
|
||||||
use App\Command\CreateListOfFilesToGenerateCommand;
|
use App\Command\CreateListOfFilesToGenerateCommand;
|
||||||
use App\Command\FindBuildConfigurationFileCommand;
|
use App\Command\FindBuildConfigurationFileCommand;
|
||||||
use App\Command\GenerateConfigurationFilesCommand;
|
use App\Command\GenerateConfigurationFilesCommand;
|
||||||
|
use App\Command\RemoveIgnoredFilesCommand;
|
||||||
use App\Command\ValidateConfigurationDataCommand;
|
use App\Command\ValidateConfigurationDataCommand;
|
||||||
use App\DataTransferObject\ConfigDto;
|
use App\DataTransferObject\ConfigDto;
|
||||||
use App\DataTransferObject\TemplateFile;
|
use App\DataTransferObject\TemplateFile;
|
||||||
|
use App\IgnoreFile;
|
||||||
use Illuminate\Pipeline\Pipeline;
|
use Illuminate\Pipeline\Pipeline;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Symfony\Component\Console\Attribute\AsCommand;
|
use Symfony\Component\Console\Attribute\AsCommand;
|
||||||
|
@ -72,6 +74,7 @@ class GenerateCommand extends Command
|
||||||
new CreateFinalConfigurationDataCommand(),
|
new CreateFinalConfigurationDataCommand(),
|
||||||
new ValidateConfigurationDataCommand(),
|
new ValidateConfigurationDataCommand(),
|
||||||
new CreateListOfFilesToGenerateCommand(),
|
new CreateListOfFilesToGenerateCommand(),
|
||||||
|
new RemoveIgnoredFilesCommand(IgnoreFile::parse()),
|
||||||
new GenerateConfigurationFilesCommand(
|
new GenerateConfigurationFilesCommand(
|
||||||
$this->filesystem,
|
$this->filesystem,
|
||||||
$this->twig,
|
$this->twig,
|
||||||
|
|
Loading…
Reference in a new issue