From 3af6050bbdf5917ecb3256048988fb09986bf338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20K=C3=BCpper=20Cardoso?= Date: Thu, 8 Jul 2021 17:08:05 +0200 Subject: [PATCH] remove return type of `callArtisan` --- src/Codeception/Module/Laravel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Codeception/Module/Laravel.php b/src/Codeception/Module/Laravel.php index 32744d5..53ee103 100644 --- a/src/Codeception/Module/Laravel.php +++ b/src/Codeception/Module/Laravel.php @@ -441,7 +441,7 @@ public function dontSeeEventTriggered($expected): void * @param OutputInterface|null $output * @return string|void */ - public function callArtisan(string $command, $parameters = [], OutputInterface $output = null): string + public function callArtisan(string $command, $parameters = [], OutputInterface $output = null) { $console = $this->app->make(Kernel::class); if (!$output) {