Skip to content

Commit f2371e5

Browse files
Merge branch '3.3' into 3.4
* 3.3: [DI] Dont resolve envs in service ids Add tests proving it can load annotated files [WebProfilerBundle] Reset letter-spacing in toolbar Prefer overflow-wrap to word-break [Routing] Fix "config-file-relative" annotation loader resources Make search in debug:container command case-insensitive `resolveEnvPlaceholders` will return a mixed value
2 parents 3db1ee8 + b827c16 commit f2371e5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Command/ContainerDebugCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,8 @@ private function findServiceIdsContaining(ContainerBuilder $builder, $name)
220220
{
221221
$serviceIds = $builder->getServiceIds();
222222
$foundServiceIds = array();
223-
$name = strtolower($name);
224223
foreach ($serviceIds as $serviceId) {
225-
if (false === strpos($serviceId, $name)) {
224+
if (false === stripos($serviceId, $name)) {
226225
continue;
227226
}
228227
$foundServiceIds[] = $serviceId;

0 commit comments

Comments
 (0)