123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Symfony\Component\Validator;
- interface PropertyMetadataContainerInterface
- {
-
- public function hasPropertyMetadata($property);
-
- public function getPropertyMetadata($property);
- }
|