Skip to content

Commit 5431d3c

Browse files
committed
Merge pull request #173 from ezzatron/fix-test-typehint
Changed test typehint from AbstractTest to TestInterface.
2 parents 518a521 + ad218c9 commit 5431d3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Core/Suite.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ public function halt()
9999
/**
100100
* Run a test and track its results.
101101
*
102+
* @param TestInterface $test
102103
* @param TestResult $result
103-
* @param $test
104104
*/
105-
protected function runTest(AbstractTest $test, TestResult $result)
105+
protected function runTest(TestInterface $test, TestResult $result)
106106
{
107107
if ($this->getPending() !== null) {
108108
$test->setPending($this->getPending());

0 commit comments

Comments
 (0)