Browse Source

Add changes from rector rule NumericReturnTypeFromStrictReturnsRector

Adam Halfar 1 year ago
parent
commit
f60eae0b38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test_app/TestApp/Command/DependencyCommand.php

+ 1 - 1
tests/test_app/TestApp/Command/DependencyCommand.php

@@ -17,7 +17,7 @@ class DependencyCommand extends Command
         $this->inject = $inject;
     }
 
-    public function execute(Arguments $args, ConsoleIo $io)
+    public function execute(Arguments $args, ConsoleIo $io): int
     {
         $io->out('Dependency Command');
         $io->out('constructor inject: ' . json_encode($this->inject));