8000 [Validator] Fix docblock of ClassMetadata#members by ostrolucky · Pull Request #26582 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Validator] Fix docblock of ClassMetadata#members #26582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Validator] Fix docblock of ClassMetadata#members
Structure of this array is in reality <string, array<int, PropertyMetadata>>, so MemberMetadata is 2 levels deep in this array, instead of one
  • Loading branch information
ostrolucky authored Mar 17, 2018
commit 44008c404703b6f0b4d6cd0440fd454a9016780b
2 changes: 1 addition & 1 deletion src/Symfony/Component/Validator/Mapping/ClassMetadata.php
Original file line number< 5D09 /th> Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ClassMetadata extends ElementMetadata implements ClassMetadataInterface
public $defaultGroup;

/**
* @var MemberMetadata[]
* @var MemberMetadata[][]
*
* @internal This property is public in order to reduce the size of the
* class' serialized representation. Do not access it. Use
Expand Down
0