--- /dev/null
+<?php
+namespace wcf\system\option;
+
+/**
+ * Every option type whose values support i18n input have to implement this interface.
+ *
+ * @author Matthias Schmidt
+ * @copyright 2001-2018 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\System\Option
+ * @since 3.2
+ */
+interface II18nOptionType {};
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @package WoltLabSuite\Core\System\Option
*/
-class TextI18nOptionType extends TextOptionType {
+class TextI18nOptionType extends TextOptionType implements II18nOptionType {
/**
* @inheritDoc
*/
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @package WoltLabSuite\Core\System\Option
*/
-class TextareaI18nOptionType extends TextareaOptionType {
+class TextareaI18nOptionType extends TextareaOptionType implements II18nOptionType {
/**
* @inheritDoc
*/