diff --git a/src/Doctrine/PersistentTranslatable.php b/src/Doctrine/PersistentTranslatable.php index 21f41ed..0b3e3da 100644 --- a/src/Doctrine/PersistentTranslatable.php +++ b/src/Doctrine/PersistentTranslatable.php @@ -132,9 +132,6 @@ public function __construct( $this->logger = (null == $logger) ? new NullLogger() : $logger; } - /** - * @param mixed $value - */ public function setPrimaryValue($value) { $this->primaryValue = $value; diff --git a/src/TranslatableInterface.php b/src/TranslatableInterface.php index c22a028..70d2acf 100644 --- a/src/TranslatableInterface.php +++ b/src/TranslatableInterface.php @@ -26,7 +26,6 @@ public function translate(string $locale = null); /** * Overwrites the translation for the given locale. * - * @param mixed $value * @param string|null $locale The target locale or null for the current locale. */ public function setTranslation($value, string $locale = null);