@@ -374,7 +374,7 @@ public function load(array $configs, ContainerBuilder $container)
374374 $ this ->registerDebugConfiguration ($ config ['php_errors ' ], $ container , $ phpLoader );
375375 $ this ->registerRouterConfiguration ($ config ['router ' ], $ container , $ loader , $ config ['translator ' ]['enabled_locales ' ] ?? []);
376376 $ this ->registerAnnotationsConfiguration ($ config ['annotations ' ], $ container , $ loader );
377- $ this ->registerPropertyAccessConfiguration ($ config ['property_access ' ], $ container , $ loader );
377+ $ this ->registerPropertyAccessConfiguration ($ config ['property_access ' ], $ container , $ phpLoader );
378378 $ this ->registerSecretsConfiguration ($ config ['secrets ' ], $ container , $ phpLoader );
379379
380380 if ($ this ->isConfigEnabled ($ container , $ config ['serializer ' ])) {
@@ -1381,13 +1381,13 @@ private function registerAnnotationsConfiguration(array $config, ContainerBuilde
13811381 }
13821382 }
13831383
1384- private function registerPropertyAccessConfiguration (array $ config , ContainerBuilder $ container , XmlFileLoader $ loader )
1384+ private function registerPropertyAccessConfiguration (array $ config , ContainerBuilder $ container , PhpFileLoader $ loader )
13851385 {
13861386 if (!class_exists (PropertyAccessor::class)) {
13871387 return ;
13881388 }
13891389
1390- $ loader ->load ('property_access.xml ' );
1390+ $ loader ->load ('property_access.php ' );
13911391
13921392 $ container
13931393 ->getDefinition ('property_accessor ' )
0 commit comments