listService = $listService; parent::__construct(); } /** * */ protected function configure () { $this->setName('adsecurity:compile'); $this->setDescription("compile all wordlist into one"); $this->setHelp("For real ?"); } /** * @param InputInterface $input * @param OutputInterface $output * @return int|null|void */ public function execute (InputInterface $input, OutputInterface $output) { $this->listService->compileWordlist(); //$output->writeln('info : sent '.$o['exec'].' mail(s), with '.$o['error'].' error(s) deal with it ;) .'); } }