summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Controller/FeedControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Controller/FeedControllerTest.php')
-rw-r--r--tests/Unit/Controller/FeedControllerTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Unit/Controller/FeedControllerTest.php b/tests/Unit/Controller/FeedControllerTest.php
index 4703d307a..9a3114da0 100644
--- a/tests/Unit/Controller/FeedControllerTest.php
+++ b/tests/Unit/Controller/FeedControllerTest.php
@@ -45,7 +45,7 @@ class FeedControllerTest extends TestCase
/**
* Gets run before each test
*/
- public function setUp()
+ public function setUp(): void
{
$this->appName = 'news';
$this->user = 'jack';
@@ -398,7 +398,7 @@ class FeedControllerTest extends TestCase
}
- public function testImport()
+ public function testImport()
{
$feed = new Feed();
@@ -426,7 +426,7 @@ class FeedControllerTest extends TestCase
}
- public function testImportCreatesNoAdditionalFeed()
+ public function testImportCreatesNoAdditionalFeed()
{
$this->feedService->expects($this->once())
->method('importArticles')
@@ -467,7 +467,7 @@ class FeedControllerTest extends TestCase
}
- public function testRestore()
+ public function testRestore()
{
$this->feedService->expects($this->once())
->method('unmarkDeleted')
@@ -492,7 +492,7 @@ class FeedControllerTest extends TestCase
$this->assertEquals($response->getStatus(), Http::STATUS_NOT_FOUND);
}
- public function testPatch()
+ public function testPatch()
{
$expected = [
'pinned' => true,