summaryrefslogtreecommitdiffstats
path: root/tests/Core/Controller/CssControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Core/Controller/CssControllerTest.php')
-rw-r--r--tests/Core/Controller/CssControllerTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Core/Controller/CssControllerTest.php b/tests/Core/Controller/CssControllerTest.php
index 93151065b3c..1179bc0c070 100644
--- a/tests/Core/Controller/CssControllerTest.php
+++ b/tests/Core/Controller/CssControllerTest.php
@@ -39,10 +39,10 @@ use Test\TestCase;
class CssControllerTest extends TestCase {
- /** @var IAppData|\PHPUnit_Framework_MockObject_MockObject */
+ /** @var IAppData|\PHPUnit\Framework\MockObject\MockObject */
private $appData;
- /** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
+ /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */
private $request;
/** @var CssController */
@@ -51,7 +51,7 @@ class CssControllerTest extends TestCase {
protected function setUp(): void {
parent::setUp();
- /** @var Factory|\PHPUnit_Framework_MockObject_MockObject $factory */
+ /** @var Factory|\PHPUnit\Framework\MockObject\MockObject $factory */
$factory = $this->createMock(Factory::class);
$this->appData = $this->createMock(AppData::class);
$factory->expects($this->once())
@@ -59,7 +59,7 @@ class CssControllerTest extends TestCase {
->with('css')
->willReturn($this->appData);
- /** @var ITimeFactory|\PHPUnit_Framework_MockObject_MockObject $timeFactory */
+ /** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject $timeFactory */
$timeFactory = $this->createMock(ITimeFactory::class);
$timeFactory->method('getTime')
->willReturn(1337);