File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -54,17 +54,13 @@ protected function resetService($name)
5454 }
5555 $ manager ->setProxyInitializer (\Closure::bind (
5656 function (&$ wrappedInstance , LazyLoadingInterface $ manager ) use ($ name ) {
57- if (isset ($ this ->normalizedIds [$ normalizedId = strtolower ($ name )])) { // BC with DI v3.4
58- $ name = $ this ->normalizedIds [$ normalizedId ];
59- }
6057 if (isset ($ this ->aliases [$ name ])) {
6158 $ name = $ this ->aliases [$ name ];
6259 }
6360 if (isset ($ this ->fileMap [$ name ])) {
6461 $ wrappedInstance = $ this ->load ($ this ->fileMap [$ name ]);
6562 } else {
66- $ method = $ this ->methodMap [$ name ] ?? 'get ' .strtr ($ name , $ this ->underscoreMap ).'Service ' ; // BC with DI v3.4
67- $ wrappedInstance = $ this ->{$ method }(false );
63+ $ wrappedInstance = $ this ->{$ this ->methodMap [$ name ]}(false );
6864 }
6965
7066 $ manager ->setProxyInitializer (null );
You can’t perform that action at this time.
0 commit comments