Browse Source

Remove PHP7 specific syntax

Mark Story 7 years ago
parent
commit
ced58b479c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Console/Command.php

+ 1 - 1
src/Console/Command.php

@@ -258,7 +258,7 @@ class Command
      * @param \Cake\Console\ConsoleIo $io The ConsoleIo instance to use for the executed command.
      * @return int|null The exit code or null for success of the command.
      */
-    public function executeCommand($command, array $args = [], ?ConsoleIo $io = null)
+    public function executeCommand($command, array $args = [], ConsoleIo $io = null)
     {
         if (is_string($command)) {
             if (!class_exists($command)) {