8000 [Validator] ClassMetadata doc fix by Tobion · Pull Request #11706 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Validator] ClassMetadata doc fix #11706

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 2 commits into from
Aug 20, 2014
Merged
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
[Validator] remove duplicate interface implementations
  • Loading branch information
Tobion committed Aug 19, 2014
commit 1eec2d6fdafe3171d3f755569a041d903d1fd73c
4 changes: 1 addition & 3 deletions src/Symfony/Component/Validator/Mapping/ClassMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
use Symfony\Component\Validator\Constraints\Valid;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
use Symfony\Component\Validator\Exception\GroupDefinitionException;
use Symfony\Component\Validator\MetadataInterface as LegacyMetadataInterface;
use Symfony\Component\Validator\PropertyMetadataContainerInterface;
use Symfony\Component\Validator\ValidationVisitorInterface;

/**
Expand All @@ -29,7 +27,7 @@
* @author Bernhard Schussek <bschussek@gmail.com>
* @author Fabien Potencier <fabien@symfony.com>
*/
class ClassMetadata extends ElementMetadata implements LegacyMetadataInterface, PropertyMetadataContainerInterface, ClassMetadataInterface
class ClassMetadata extends ElementMetadata implements ClassMetadataInterface
{
/**
* @var string
Expand Down
0