Skip to content

Commit 04c6c92

Browse files
minor symfony#31878 Add a missing quote in PropertyAccessorInterface::getValue() 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](symfony@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
2 parents e4c56f2 + fd17ff0 commit 04c6c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/PropertyAccess/PropertyAccessorInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function setValue(&$objectOrArray, $propertyPath, $value);
5858
*
5959
* $propertyAccessor = PropertyAccess::createPropertyAccessor();
6060
*
61-
* echo $propertyAccessor->getValue($object, 'child.name);
61+
* echo $propertyAccessor->getValue($object, 'child.name');
6262
* // equals echo $object->getChild()->getName();
6363
*
6464
* This method first tries to find a public getter for each property in the

0 commit comments

Comments
 (0)