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