Completed
Push — master ( 93d90a...443d3e )
by Paula
11:00
created
src/Model/TranslatableInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -34,21 +34,25 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param TranslationInterface $translation
37
+     * @return void
37 38
      */
38 39
     public function addTranslation(TranslationInterface $translation): void;
39 40
 
40 41
     /**
41 42
      * @param TranslationInterface $translation
43
+     * @return void
42 44
      */
43 45
     public function removeTranslation(TranslationInterface $translation): void;
44 46
 
45 47
     /**
46 48
      * @param null|string $locale
49
+     * @return void
47 50
      */
48 51
     public function setCurrentLocale(?string $locale): void;
49 52
 
50 53
     /**
51 54
      * @param null|string $locale
55
+     * @return void
52 56
      */
53 57
     public function setFallbackLocale(?string $locale): void;
54 58
 }
Please login to merge, or discard this patch.
src/Model/TranslatableTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Doctrine\Common\Collections\Collection;
9 9
 use Doctrine\Common\Collections\Criteria;
10 10
 use Doctrine\Common\Collections\Expr\Comparison;
11
-use Doctrine\ORM\PersistentCollection;
12 11
 
13 12
 /**
14 13
  * @see TranslatableInterface
Please login to merge, or discard this patch.