mailpoet
/
vendor-prefixed
/
symfony
/
validator
/
Violation
/
ConstraintViolationBuilderInterface.php
ConstraintViolationBuilder.php
4 years ago
ConstraintViolationBuilderInterface.php
4 years ago
index.php
3 years ago
ConstraintViolationBuilderInterface.php
16 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Validator\Violation; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface ConstraintViolationBuilderInterface |
| 5 | { |
| 6 | public function atPath(string $path); |
| 7 | public function setParameter(string $key, string $value); |
| 8 | public function setParameters(array $parameters); |
| 9 | public function setTranslationDomain(string $translationDomain); |
| 10 | public function setInvalidValue($invalidValue); |
| 11 | public function setPlural(int $number); |
| 12 | public function setCode(?string $code); |
| 13 | public function setCause($cause); |
| 14 | public function addViolation(); |
| 15 | } |
| 16 |