1 | <?php |
||
8 | class TranslatableEntity implements TranslatableInterface |
||
9 | { |
||
10 | use Model\Translatable\Translatable; |
||
11 | |||
12 | private $id; |
||
13 | |||
14 | public function __call($method, $arguments) |
||
18 | |||
19 | /** |
||
20 | * Returns object id. |
||
21 | * |
||
22 | * @return integer |
||
23 | */ |
||
24 | public function getId() |
||
28 | |||
29 | /** |
||
30 | * @param string $locale |
||
31 | */ |
||
32 | public function setLocale($locale) |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getLocale() |
||
46 | } |
||
47 |