8000 [Serializer] Add a MaxDepth option by dunglas · Pull Request #17113 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Serializer] Add a MaxDepth option #17113

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

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove unrelated changes
  • Loading branch information
dunglas committed Jan 18, 2016
commit 581abf11659ec5ff20b84c5f914c8c47145dc643
2 changes: 1 addition & 1 deletion src/Symfony/Component/Serializer/Mapping/ClassMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ClassMetadata implements ClassMetadataInterface
public $name;

/**
* @var array
* @var AttributeMetadataInterface[]
*
* @internal This property is public in order to reduce the size of the
* class' serialized representation. Do not access it. Use
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function addAttributeMetadata(AttributeMetadataInterface $attributeMetada
/**
* Gets the list of {@link AttributeMetadataInterface}.
*
* @return array An array containing the attribute name as key and the related instance of AttributeMetadataInterface as value.
* @return @return AttributeMetadataInterface[]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo

*/
public function getAttributesMetadata();

Expand Down
0