Skip to content

Commit 2d2b086

Browse files
dunglasfabpot
authored andcommitted
[Serializer] minor: Remove an extra space in a YamlFileLoader error
1 parent 8de2ed9 commit 2d2b086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mapping/Loader/YamlFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function loadClassMetadata(ClassMetadataInterface $classMetadata)
9090

9191
if (isset($data['max_depth'])) {
9292
if (!is_int($data['max_depth'])) {
93-
throw new MappingException('The "max_depth" value must an integer in "%s" for the attribute "%s" of the class "%s".', $this->file, $attribute, $classMetadata->getName());
93+
throw new MappingException('The "max_depth" value must be an integer in "%s" for the attribute "%s" of the class "%s".', $this->file, $attribute, $classMetadata->getName());
9494
}
9595

9696
$attributeMetadata->setMaxDepth($data['max_depth']);

0 commit comments

Comments
 (0)