8000 [Validator] Fix use of GroupSequenceProvider in child classes by linniksa · Pull Request #23925 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Validator] Fix use of GroupSequenceProvider in child classes #23925

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 2 commits into from
Closed
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
Next Next commit
cleanup
  • Loading branch information
linniksa committed Aug 17, 2017
commit fbfad1b56a90e59c087a856647d85c841bbc9dd5
Original file line number Diff line number Diff line change
Expand Up @@ -309,13 +309,3 @@ public function testGetPropertyMetadataReturnsEmptyArrayWithoutConfiguredMetadat
$this->assertCount(0, $this->metadata->getPropertyMetadata('foo'), '->getPropertyMetadata() returns an empty collection if no metadata is configured for the given property');
}
}

class ParentClass
{
public $example = 0;
}

class ChildClass extends ParentClass
{
public $example = 1; // overrides parent property of same name
}
0