8000 [Serializer] Properties extractor implementations by joelwurtz · Pull Request #30980 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Serializer] Properties extractor implementations #30980

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
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
Add final and experimental
  • Loading branch information
joelwurtz committed Apr 8, 2019
commit 64458eb3e594a4b8863a9f830ad60e56c5abda2f
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* Allow properties given an allowed list of properties in the context.
*
* @author Joel Wurtz <joel.wurtz@gmail.com>
*
* @experimental in 4.3
*/
final class AllowedPropertyListExtractor implements PropertyListExtractorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
* Filter properties given a specific set of groups
*
* @author Joel Wurtz <joel.wurtz@gmail.com>
*
* @experimental in 4.3
*/
class GroupPropertyListExtractor implements PropertyListExtractorInterface
final class GroupPropertyListExtractor implements PropertyListExtractorInterface
{
public const GROUPS = 'groups';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* Remove properties given a ignore list of attributes in the context.
*
* @author Joel Wurtz <joel.wurtz@gmail.com>
*
* @experimental in 4.3
*/
final class IgnoredPropertyListExtractor implements PropertyListExtractorInterface
{
Expand Down
0