1 | <?php |
||
23 | class SyncCommand extends Command |
||
24 | { |
||
25 | protected static $defaultName = 'translation:sync'; |
||
26 | |||
27 | /** |
||
28 | * @var StorageManager |
||
29 | */ |
||
30 | private $storageManager; |
||
31 | |||
32 | /** |
||
33 | * @param StorageManager $storageManager |
||
34 | */ |
||
35 | public function __construct(StorageManager $storageManager) |
||
41 | |||
42 | protected function configure() |
||
49 | |||
50 | protected function execute(InputInterface $input, OutputInterface $output) |
||
55 | } |
||
56 |