Skip to content

Commit

Permalink
minor #20174 [Serializer] minor: Remove an extra space in a YamlFileL…
Browse files Browse the repository at this point in the history
…oader error (dunglas)

This PR was squashed before being merged into the 3.1 branch (closes #20174).

Discussion
----------

[Serializer] minor: Remove an extra space in a YamlFileLoader error

| Q             | A
| ------------- | ---
| Branch?       | 3.1
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Commits
-------

a1bc96b [Serializer] minor: Remove an extra space in a YamlFileLoader error
  • Loading branch information
fabpot committed Oct 7, 2016
2 parents a4a68bc + a1bc96b commit 90a952d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public function loadClassMetadata(ClassMetadataInterface $classMetadata)

if (isset($data['max_depth'])) {
if (!is_int($data['max_depth'])) {
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());
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());
}

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

0 comments on commit 90a952d

Please sign in to comment.