cronListener = $cronListener; } protected function configure() { $this ->setName('kupshop:ordering:notify-waiting-package') ->setDescription('Notify customers about waiting packages'); } protected function execute(InputInterface $input, OutputInterface $output) { $this->cronListener->handleNotifyWaitingPackage(); return 0; } }