Skip to content

Commit b890f64

Browse files
committed
minor symfony#10765 Update property_info.rst - added missing variable $accessExtractors (Chris8934)
This PR was merged into the 4.2 branch. Discussion ---------- Update property_info.rst - added missing variable $accessExtractors Added variable $accessExtractors from Doku v 4.1. <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- e78c5b8 Update property_info.rst
2 parents 764066a + e78c5b8 commit b890f64

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

components/property_info.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,13 @@ provide it with a set of information extractors.
5959
// list of PropertyDescriptionExtractorInterface (any iterable)
6060
$descriptionExtractors = array($phpDocExtractor);
6161
62+
// array of PropertyAccessExtractorInterface
63+
$accessExtractors = array($reflectionExtractor);
64+
6265
// list of PropertyInitializableExtractorInterface (any iterable)
6366
$propertyInitializableExtractors = array($reflectionExtractor);
6467
65-
// list of PropertyAccessExtractorInterface (any iterable)
68+
6669
6770
$propertyInfo = new PropertyInfoExtractor(
6871
$listExtractors,

0 commit comments

Comments
 (0)