Skip to content

Commit

Permalink
#76 Fixes for PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
j3nsch committed Oct 16, 2024
1 parent fd444d1 commit 318abf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Import/Console/BibtexImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected function configure()
);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$fileName = $input->getArgument(self::ARGUMENT_IMPORT_FILE);

Expand Down
2 changes: 1 addition & 1 deletion src/Import/Console/BibtexListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function configure()
->setHelp($help);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$bibtex = BibtexService::getInstance();

Expand Down

0 comments on commit 318abf2

Please sign in to comment.