Beispiel #1
0
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $trackerId = $input->getArgument('tracker');
     $writer = $this->getProfileWriter($input);
     $result = \Tiki_Profile_InstallHandler_Tracker::export($writer, $trackerId);
     if ($result) {
         $writer->save();
     } else {
         $output->writeln("Tracker not found: {$trackerId}");
     }
 }