Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 04c6c92

Browse filesBrowse files
minor #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](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
Copy full SHA for 04c6c92

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/Symfony/Component/PropertyAccess/PropertyAccessorInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/PropertyAccess/PropertyAccessorInterface.php
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.