Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Команда которую запускаю, название tst:wf
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- file_put_contents($this->parameterBag->get('kernel.project_dir').'/1.txt',"1");
- }
- //Команда которая запускает:
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $process = Process::fromShellCommandline('php bin/console tst:wf');
- $process->run();
- if(!$process->isSuccessful()){
- throw new ProcessFailedException($process);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement