summaryrefslogtreecommitdiff
path: root/tests/Unit/TestCase.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-10-06 21:03:20 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2019-10-06 21:18:42 +0200
commitfaf74150e9481ad9338eb6cc2428d02b24e9fc43 (patch)
tree185d36e48de96f9070038ce6a6e27c3fe6d8880a /tests/Unit/TestCase.php
parent24bfc292208082513fd1159cb3176e08b1686c11 (diff)
Mailer: Use users locale for translation
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)
{