summaryrefslogtreecommitdiff
path: root/tests/Unit/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/TestCase.php')
-rw-r--r--tests/Unit/TestCase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/TestCase.php b/tests/Unit/TestCase.php
index d09104d4..e1a704d9 100644
--- a/tests/Unit/TestCase.php
+++ b/tests/Unit/TestCase.php
@@ -2,8 +2,8 @@
namespace Engelsystem\Test\Unit;
-use PHPUnit\Framework\MockObject\Matcher\InvokedRecorder;
use PHPUnit\Framework\MockObject\MockObject;
+use PHPUnit\Framework\MockObject\Rule\InvocationOrder;
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
abstract class TestCase extends PHPUnitTestCase
@@ -13,7 +13,7 @@ abstract class TestCase extends PHPUnitTestCase
* @param string $method
* @param array $arguments
* @param mixed $return
- * @param InvokedRecorder $times
+ * @param InvocationOrder $times
*/
protected function setExpects($object, $method, $arguments = null, $return = null, $times = null)
{