Skip to content

Commit

Permalink
[TASK] Make extension PHP 8.2 ready (pixelant#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bussmeyer committed Feb 14, 2024
1 parent c2ee393 commit 78351a7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Classes/Command/ClearRecordHashCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected function configure()
);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$queryBuilder = $this->getQueryBuilder();

Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/CreateCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function configure()
*
* @throws IdentityConflictException
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$exceptions = [];

Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/DeleteCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected function interact(InputInterface $input, OutputInterface $output)
/**
* @inheritDoc
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$exceptions = [];

Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/PendingRelationsCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected function configure()
* @return int
* @throws InvalidQueryResultException
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$counts = [
'_total' => [
Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/UpdateCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function configure()
*
* @throws NotFoundException
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$exceptions = [];

Expand Down

0 comments on commit 78351a7

Please sign in to comment.