From f8589a9d7aa29946fc70ef834451cfc55df5a9e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Poirier=20Th=C3=A9or=C3=AAt?= Date: Fri, 28 Jun 2024 14:11:06 -0400 Subject: [PATCH] [Workflow] Use new draw/dependency-injection component --- .../DependencyInjection/DrawFrameworkExtraExtension.php | 2 +- .../DependencyInjection}/WorkflowIntegration.php | 2 +- .../Tests/DependencyInjection}/WorkflowIntegrationTest.php | 4 ++-- packages/workflow/composer.json | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) rename packages/{framework-extra-bundle/DependencyInjection/Integration => workflow/DependencyInjection}/WorkflowIntegration.php (95%) rename packages/{framework-extra-bundle/Tests/DependencyInjection/Integration => workflow/Tests/DependencyInjection}/WorkflowIntegrationTest.php (89%) diff --git a/packages/framework-extra-bundle/DependencyInjection/DrawFrameworkExtraExtension.php b/packages/framework-extra-bundle/DependencyInjection/DrawFrameworkExtraExtension.php index 1bc3541c..640f8986 100644 --- a/packages/framework-extra-bundle/DependencyInjection/DrawFrameworkExtraExtension.php +++ b/packages/framework-extra-bundle/DependencyInjection/DrawFrameworkExtraExtension.php @@ -4,7 +4,6 @@ use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\LoggerIntegration; use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\LogIntegration; -use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\WorkflowIntegration; use Draw\Component\Application\DependencyInjection\ConfigurationIntegration; use Draw\Component\Application\DependencyInjection\CronIntegration; use Draw\Component\Application\DependencyInjection\FeatureIntegration; @@ -23,6 +22,7 @@ use Draw\Component\Security\DependencyInjection\SecurityIntegration; use Draw\Component\Tester\DependencyInjection\TesterIntegration; use Draw\Component\Validator\DependencyInjection\ValidatorIntegration; +use Draw\Component\Workflow\DependencyInjection\WorkflowIntegration; use Draw\DoctrineExtra\DependencyInjection\DoctrineExtraIntegration; use Symfony\Component\Config\Definition\ConfigurationInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; diff --git a/packages/framework-extra-bundle/DependencyInjection/Integration/WorkflowIntegration.php b/packages/workflow/DependencyInjection/WorkflowIntegration.php similarity index 95% rename from packages/framework-extra-bundle/DependencyInjection/Integration/WorkflowIntegration.php rename to packages/workflow/DependencyInjection/WorkflowIntegration.php index 0d94b890..46588aea 100644 --- a/packages/framework-extra-bundle/DependencyInjection/Integration/WorkflowIntegration.php +++ b/packages/workflow/DependencyInjection/WorkflowIntegration.php @@ -1,6 +1,6 @@