From 7e6bbfd08532416f520cc1ee7fb2b91d6fa3284b Mon Sep 17 00:00:00 2001 From: sebprt Date: Wed, 20 Dec 2023 11:11:55 +0100 Subject: [PATCH] Ran php-cs-fixer --- src/Console/Command/RunCommand.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Console/Command/RunCommand.php b/src/Console/Command/RunCommand.php index ffaeca5f..83b03500 100644 --- a/src/Console/Command/RunCommand.php +++ b/src/Console/Command/RunCommand.php @@ -81,7 +81,7 @@ private function pipelineWorker(Console\Style\SymfonyStyle $style, string $cwd, \\ProjectServiceContainer::class => 'container.php', ]); \$autoload->register(); - + \$dotenv = new \\Symfony\\Component\\Dotenv\\Dotenv(); \$dotenv->usePutenv(); @@ -91,7 +91,7 @@ private function pipelineWorker(Console\Style\SymfonyStyle $style, string $cwd, if (file_exists(\$file = '{$cwd}/{$path}/.env')) { \$dotenv->loadEnv(\$file); } - + \$runtime = new \\Kiboko\\Component\\Runtime\\Pipeline\\Console( new \\Symfony\\Component\\Console\\Output\\ConsoleOutput(), new \\Kiboko\\Component\\Pipeline\\Pipeline( @@ -101,12 +101,12 @@ private function pipelineWorker(Console\Style\SymfonyStyle $style, string $cwd, new \\Kiboko\\Contract\\Pipeline\\NullState(), ), ); - + \$satellite = include '{$cwd}/{$path}/{$entrypoint}'; - + \$satellite(\$runtime); \$runtime->run(); - + \$autoload->unregister(); PHP; @@ -153,7 +153,7 @@ private function workflowWorker(Console\Style\SymfonyStyle $style, string $cwd, \\ProjectServiceContainer::class => 'container.php', ]); \$autoload->register(); - + \$dotenv = new \\Symfony\\Component\\Dotenv\\Dotenv(); \$dotenv->usePutenv(); @@ -170,12 +170,12 @@ private function workflowWorker(Console\Style\SymfonyStyle $style, string $cwd, new \\Psr\\Log\\NullLogger() ), ); - + \$satellite = include '{$cwd}/{$path}/{$entrypoint}'; - + \$satellite(\$runtime); \$runtime->run(); - + \$autoload->unregister(); PHP;