Skip to content

Commit

Permalink
Merge pull request #26 from Fabricio872/25-fix-deprecations
Browse files Browse the repository at this point in the history
added void output parameter to configure method in command class
  • Loading branch information
Fabricio872 committed Nov 19, 2023
2 parents 9e99b1b + c7ae34f commit 556836d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Command/AbstractList.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function __construct(
parent::__construct();
}

protected function configure()
protected function configure(): void
{
$this
->addArgument('page', InputArgument::OPTIONAL, 'Page', 1)
Expand Down
2 changes: 1 addition & 1 deletion src/Command/UserListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UserListCommand extends AbstractList
/** @var array|object[] */
private ?array $userList = null;

protected function configure()
protected function configure(): void
{
parent::configure();
}
Expand Down

0 comments on commit 556836d

Please sign in to comment.