| 1 | <?php |
||
| 23 | class TranslationHistoryManager extends BaseTranslationHistoryManager |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var ObjectManager |
||
| 27 | */ |
||
| 28 | private $objectManager; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param ObjectManager $objectManager Object manager for translation history entities |
||
| 32 | * @param string $class Translation history model class name |
||
| 33 | */ |
||
| 34 | 3 | public function __construct(ObjectManager $objectManager, $class) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritDoc} |
||
| 43 | */ |
||
| 44 | 2 | public function updateTranslationHistory(TranslationHistoryInterface $translationHistory, $clear = false) |
|
| 53 | } |
||
| 54 |