Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Validation / TranslatorInterface.php
1 <?php
2
3 namespace Drupal\Core\Validation;
4
5 use Symfony\Component\Translation\TranslatorInterface as SymfonyTranslatorInterface;
6
7 /**
8  * Defines an interface used in validation.
9  *
10  * This extends the interface used by the Symfony validator in order to indicate
11  * that the Drupal code is actually independent from the Symfony translation
12  * component.
13  *
14  * @see https://github.com/symfony/symfony/pull/6189
15  * @see https://github.com/symfony/symfony/issues/15714
16  */
17 interface TranslatorInterface extends SymfonyTranslatorInterface {
18
19 }