We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 627b69b commit 930a8e7Copy full SHA for 930a8e7
src/Codeception/Module/Redis.php
@@ -3,7 +3,7 @@
3
namespace Codeception\Module;
4
5
use Codeception\Module as CodeceptionModule;
6
-use Codeception\TestCase;
+use Codeception\Testable;
7
use Codeception\Exception\ModuleException as ModuleException;
8
use Codeception\Lib\Driver\Redis as RedisDriver;
9
@@ -57,15 +57,15 @@ public function _initialize()
57
}
58
59
60
- public function _before(TestCase $test)
+ public function _before(Testable $test)
61
{
62
if ($this->config['cleanup']) {
63
$this->cleanup();
64
65
parent::_before($test);
66
67
68
- public function _after(TestCase $test)
+ public function _after(Testable $test)
69
70
parent::_after($test);
71
0 commit comments