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