diff --git a/lib/Command/Reset.php b/lib/Command/Reset.php index b7f2911f..c3665c25 100644 --- a/lib/Command/Reset.php +++ b/lib/Command/Reset.php @@ -41,14 +41,14 @@ public function __construct( /** * @return void */ - protected function configure() { + protected function configure(): void { $this ->setName('notify_push:reset') ->setDescription('Cancel all active connections to the push server'); parent::configure(); } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output): int { $this->queue->push("notify_signal", "reset"); return 0; }