diff --git a/composer.json b/composer.json index 982d1ac..acf81d4 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ "php": ">=5.6.0", "botman/botman": "~2.0", "clue/stdio-react": "^2.0", - "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0", - "illuminate/console": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0" + "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", + "illuminate/console": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" }, "require-dev": { - "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0" + "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "autoload": { "psr-4": { diff --git a/src/Drivers/ConsoleDriver.php b/src/Drivers/ConsoleDriver.php index f1da516..9cc60ea 100644 --- a/src/Drivers/ConsoleDriver.php +++ b/src/Drivers/ConsoleDriver.php @@ -193,4 +193,9 @@ public function serializesCallbacks() { return false; } + + public function typesAndWaits(IncomingMessage $matchingMessage, float $seconds) + { + // TODO: Implement typesAndWaits() method. + } }