Skip to content

Commit 2b84fb2

Browse files
committed
minor #16818 [Form] Improve deprecation notice to mention the affected service id (apfelbox)
This PR was merged into the 2.8 branch. Discussion ---------- [Form] Improve deprecation notice to mention the affected service id | Q | A | ------------- | --- | Bug fix? |no | New feature? |no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - This fix changes the deprecation notice to mention the affected service id. Without this update it is quite annoying to find the service with the deprecated definition. Commits ------- 0b9ea95 Improve form deprecation notices to mention the affected service ids
2 parents eb2e395 + 01d482e commit 2b84fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/Compiler/FormPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ public function process(ContainerBuilder $container)
6464
if (isset($tag[0]['extended_type'])) {
6565
$extendedType = $tag[0]['extended_type'];
6666
} elseif (isset($tag[0]['alias'])) {
67-
@trigger_error('The alias option of the form.type_extension tag is deprecated since version 2.8 and will be removed in 3.0. Use the extended_type option instead.', E_USER_DEPRECATED);
67+
@trigger_error(sprintf('The alias option of the form.type_extension tag of service "%s" is deprecated since version 2.8 and will be removed in 3.0. Use the extended_type option instead.', $serviceId), E_USER_DEPRECATED);
6868
$extendedType = $tag[0]['alias'];
6969
} else {
70-
@trigger_error('The extended_type option of the form.type_extension tag is required since version 2.8.', E_USER_DEPRECATED);
70+
@trigger_error(sprintf('The extended_type option of the form.type_extension tag of service "%s" is required since version 2.8.', $serviceId), E_USER_DEPRECATED);
7171
$extendedType = $serviceId;
7272
}
7373

0 commit comments

Comments
 (0)