Skip to content

Commit

Permalink
Args are not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark authored Sep 30, 2023
1 parent fee60c7 commit 3b4edcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
*/
class Command extends CakeCommand {

protected ?Arguments $args = null;
protected Arguments $args;

protected ?ConsoleIo $io = null;
protected ConsoleIo $io;

/**
* @param \Cake\Console\Arguments $args
Expand Down

0 comments on commit 3b4edcf

Please sign in to comment.