Skip to content

Commit 79a2049

Browse files
committed
Merge branch '7.0' into 7.1
* 7.0: not registered definitions must not be modified fix low deps [String] Fix Inflector for 'hardware' [Mime] Use streams instead of loading raw message generator into memory Bump Symfony version to 7.0.9 Update VERSION for 7.0.8 Update CHANGELOG for 7.0.8 Bump Symfony version to 6.4.9 Update VERSION for 6.4.8 Update CHANGELOG for 6.4.8 Bump Symfony version to 5.4.41 Update VERSION for 5.4.40 Update CONTRIBUTORS for 5.4.40 Update CHANGELOG for 5.4.40
2 parents 29b9cb3 + 1ee25f5 commit 79a2049

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: DependencyInjection/FrameworkExtension.php

+4
Original file line numberDiff line numberDiff line change
@@ -1900,6 +1900,10 @@ private function registerSerializerConfiguration(array $config, ContainerBuilder
19001900
$container->setParameter('serializer.default_context', $defaultContext);
19011901
}
19021902

1903+
if (!$container->hasDefinition('serializer.normalizer.object')) {
1904+
return;
1905+
}
1906+
19031907
$arguments = $container->getDefinition('serializer.normalizer.object')->getArguments();
19041908
$context = [];
19051909

0 commit comments

Comments
 (0)