Skip to content

Commit

Permalink
minor #31878 Add a missing quote in PropertyAccessorInterface::getVal…
Browse files Browse the repository at this point in the history
…ue() DocBlock (juuuuuu)

This PR was merged into the 3.4 branch.

Discussion
----------

Add a missing quote in PropertyAccessorInterface::getValue() DocBlock

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | none
| License       | MIT
| Doc PR        | none

This typo is [here](1bae7b2#diff-9814357bc1a81a8e3c8e38de9ccc69d0R63) for almost 7 years now 😄
This won't change the face of the world, but it will be my first PR for Symfony.

Commits
-------

fd17ff0 Add a missing quote in getValue() DocBlock
  • Loading branch information
nicolas-grekas committed Jun 5, 2019
2 parents e4c56f2 + fd17ff0 commit 04c6c92
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -58,7 +58,7 @@ public function setValue(&$objectOrArray, $propertyPath, $value);
*
* $propertyAccessor = PropertyAccess::createPropertyAccessor();
*
* echo $propertyAccessor->getValue($object, 'child.name);
* echo $propertyAccessor->getValue($object, 'child.name');
* // equals echo $object->getChild()->getName();
*
* This method first tries to find a public getter for each property in the
Expand Down

0 comments on commit 04c6c92

Please sign in to comment.