From c100ae4cd0512131bb89a306ac14844e61128362 Mon Sep 17 00:00:00 2001 From: Purwandi Date: Fri, 19 Apr 2019 16:43:10 +0700 Subject: [PATCH] Compatibility with phpunit result printer --- src/Codeception/Specify/ResultPrinter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Codeception/Specify/ResultPrinter.php b/src/Codeception/Specify/ResultPrinter.php index 81ccdb1..b3c3d59 100644 --- a/src/Codeception/Specify/ResultPrinter.php +++ b/src/Codeception/Specify/ResultPrinter.php @@ -7,7 +7,7 @@ class ResultPrinter extends \PHPUnit\TextUI\ResultPrinter /** * @param string $progress */ - protected function writeProgress($progress) : void + protected function writeProgress(string $progress) : void { $this->write($progress); $this->column++; @@ -21,4 +21,4 @@ protected function writeProgress($progress) : void } -} \ No newline at end of file +}