summaryrefslogtreecommitdiff
path: root/vendor/symfony/translation-contracts/LocaleAwareInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/translation-contracts/LocaleAwareInterface.php')
-rw-r--r--vendor/symfony/translation-contracts/LocaleAwareInterface.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/symfony/translation-contracts/LocaleAwareInterface.php b/vendor/symfony/translation-contracts/LocaleAwareInterface.php
new file mode 100644
index 0000000000..dbd8894fe7
--- /dev/null
+++ b/vendor/symfony/translation-contracts/LocaleAwareInterface.php
@@ -0,0 +1,31 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Contracts\Translation;
+
+interface LocaleAwareInterface
+{
+ /**
+ * Sets the current locale.
+ *
+ * @param string $locale The locale
+ *
+ * @throws \InvalidArgumentException If the locale contains invalid characters
+ */
+ public function setLocale($locale);
+
+ /**
+ * Returns the current locale.
+ *
+ * @return string The locale
+ */
+ public function getLocale();
+}