1 | <?php |
||
20 | abstract class TranslationHistoryManager implements TranslationHistoryManagerInterface |
||
21 | { |
||
22 | /** |
||
23 | * Class implementing the {@link TranslationHistoryInterface} managed by this |
||
24 | * manager |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $class; |
||
28 | |||
29 | /** |
||
30 | * @param string $class Class name of managed {@link TranslationHistoryInterface} |
||
31 | * objects |
||
32 | */ |
||
33 | 3 | public function __construct($class) |
|
37 | |||
38 | /** |
||
39 | * {@inheritDoc} |
||
40 | */ |
||
41 | 1 | public function createTranslationHistory() |
|
45 | } |
||
46 |