Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-11-28 12:19:41 +0300
committerJoas Schilling <coding@schilljs.com>2019-11-28 12:19:41 +0300
commit1365784011a6fd2ccfb51e8818f9bb46aa372913 (patch)
treecea9dc980af6cf0381bd3a8c1ec6c2a4ff0d4b83 /tests/php/Chat/Parser
parent2f466f8ce2675d06149188a2985c38d81e1859e2 (diff)
Compatibility with phpunit8comptibility-with-phpunit-8
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/php/Chat/Parser')
-rw-r--r--tests/php/Chat/Parser/SystemMessageTest.php2
-rw-r--r--tests/php/Chat/Parser/UserMentionTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/php/Chat/Parser/SystemMessageTest.php b/tests/php/Chat/Parser/SystemMessageTest.php
index bc045789f..8544e7d7d 100644
--- a/tests/php/Chat/Parser/SystemMessageTest.php
+++ b/tests/php/Chat/Parser/SystemMessageTest.php
@@ -61,7 +61,7 @@ class SystemMessageTest extends TestCase {
/** @var IL10N|MockObject */
protected $l;
- public function setUp() {
+ public function setUp(): void {
parent::setUp();
$this->userManager = $this->createMock(IUserManager::class);
diff --git a/tests/php/Chat/Parser/UserMentionTest.php b/tests/php/Chat/Parser/UserMentionTest.php
index 7cdb2cbec..2e9f7a8a3 100644
--- a/tests/php/Chat/Parser/UserMentionTest.php
+++ b/tests/php/Chat/Parser/UserMentionTest.php
@@ -50,7 +50,7 @@ class UserMentionTest extends \Test\TestCase {
/** @var UserMention */
protected $parser;
- public function setUp() {
+ public function setUp(): void {
parent::setUp();
$this->commentsManager = $this->createMock(ICommentsManager::class);