1 | <?php |
||
19 | trait TranslatableTrait |
||
20 | { |
||
21 | /** |
||
22 | * @Gedmo\Locale |
||
23 | * Used locale to override Translation listener`s locale |
||
24 | * this is not a mapped field of entity metadata, just a simple property |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $locale; |
||
29 | |||
30 | /** |
||
31 | * @param string $locale |
||
32 | */ |
||
33 | public function setLocale($locale) |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getLocale() |
||
45 | } |
||
46 |