Factory
1 year ago
Loader
1 year ago
AutoMappingStrategy.php
4 years ago
CascadingStrategy.php
4 years ago
ClassMetadata.php
1 year ago
ClassMetadataInterface.php
4 years ago
GenericMetadata.php
4 years ago
GetterMetadata.php
1 year ago
MemberMetadata.php
4 years ago
MetadataInterface.php
4 years ago
PropertyMetadata.php
6 months ago
PropertyMetadataInterface.php
4 years ago
TraversalStrategy.php
4 years ago
index.php
3 years ago
ClassMetadataInterface.php
16 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Validator\Mapping; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\Validator\Constraints\GroupSequence; |
| 5 | use MailPoetVendor\Symfony\Component\Validator\GroupSequenceProviderInterface; |
| 6 | interface ClassMetadataInterface extends MetadataInterface |
| 7 | { |
| 8 | public function getConstrainedProperties(); |
| 9 | public function hasGroupSequence(); |
| 10 | public function getGroupSequence(); |
| 11 | public function isGroupSequenceProvider(); |
| 12 | public function hasPropertyMetadata(string $property); |
| 13 | public function getPropertyMetadata(string $property); |
| 14 | public function getClassName(); |
| 15 | } |
| 16 |