From f31731bd4754ca2b0eaf639e6682f036dcc66ae9 Mon Sep 17 00:00:00 2001 From: Mauro Altamura Date: Fri, 16 Oct 2020 12:11:22 +0200 Subject: [PATCH 1/2] EC-68: Please remove the "commented" attribute from the type configuration The attribute has been removed --- DependencyInjection/JMSJobQueueExtension.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/DependencyInjection/JMSJobQueueExtension.php b/DependencyInjection/JMSJobQueueExtension.php index b8be3fab..b00857e7 100644 --- a/DependencyInjection/JMSJobQueueExtension.php +++ b/DependencyInjection/JMSJobQueueExtension.php @@ -66,8 +66,7 @@ public function prepend(ContainerBuilder $container) 'dbal' => array( 'types' => array( 'jms_job_safe_object' => array( - 'class' => SafeObjectType::class, - 'commented' => true, + 'class' => SafeObjectType::class ) ) ) From a6c3611ce58c497c65d2cc36db77a48b5a7e1395 Mon Sep 17 00:00:00 2001 From: Mauro Altamura Date: Fri, 16 Oct 2020 13:27:37 +0200 Subject: [PATCH 2/2] EC-68: Please remove the "commented" attribute from the type configuration Added missing comma --- DependencyInjection/JMSJobQueueExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DependencyInjection/JMSJobQueueExtension.php b/DependencyInjection/JMSJobQueueExtension.php index b00857e7..c0d66744 100644 --- a/DependencyInjection/JMSJobQueueExtension.php +++ b/DependencyInjection/JMSJobQueueExtension.php @@ -66,7 +66,7 @@ public function prepend(ContainerBuilder $container) 'dbal' => array( 'types' => array( 'jms_job_safe_object' => array( - 'class' => SafeObjectType::class + 'class' => SafeObjectType::class, ) ) )