Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class AbstractTranslateAdmin extends Admin |
||
12 | { |
||
13 | /** |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | public function preUpdate($object) |
||
17 | { |
||
18 | $this->removeNullTranslate($object); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function prePersist($object) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @param GedmoTranslatable $object |
||
31 | */ |
||
32 | public function removeNullTranslate($object) |
||
41 |