1 | <?php |
||
25 | abstract class BaseTranslationCommand extends ContainerAwareCommand |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Returns the configured translation manager. |
||
30 | * |
||
31 | * @return TranslationManagerInterface |
||
32 | */ |
||
33 | 5 | protected function getTranslationManager() |
|
37 | |||
38 | /** |
||
39 | * Returns the translation writer. |
||
40 | * |
||
41 | * @return TranslationWriter |
||
42 | */ |
||
43 | 2 | protected function getTranslationWriter() |
|
47 | |||
48 | /** |
||
49 | * Returns the current application kernel. |
||
50 | * |
||
51 | * @return KernelInterface |
||
52 | */ |
||
53 | 3 | protected function getKernel() |
|
57 | |||
58 | /** |
||
59 | * Returns the Filesystem service. |
||
60 | * |
||
61 | * @return Filesystem |
||
62 | */ |
||
63 | 3 | protected function getFilesystem() |
|
67 | } |
||
68 |