1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Symfony\Component\Validator;
- interface PropertyMetadataInterface extends MetadataInterface
- {
-
- public function getPropertyName();
-
- public function getPropertyValue($containingValue);
- }
|