Skip to content

Commit

Permalink
Fix type-error
Browse files Browse the repository at this point in the history
  • Loading branch information
heiglandreas committed Feb 7, 2023
1 parent e68c527 commit e11b750
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Command/NotifyClosingCfps.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected function configure()
);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$header_style = new OutputFormatterStyle('white', 'green', array('bold'));
$output->getFormatter()->setStyle('header', $header_style);
Expand All @@ -88,5 +88,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
));

$notifications->notify($cfps);

return 0;
}
}

0 comments on commit e11b750

Please sign in to comment.