ExecutionContextFactoryInterface.php
9 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Validator\Context; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\Validator\Validator\ValidatorInterface; |
| 5 | interface ExecutionContextFactoryInterface |
| 6 | { |
| 7 | public function createContext(ValidatorInterface $validator, $root); |
| 8 | } |
| 9 |