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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTortue Torche <tortuetorche@users.noreply.github.com>2019-12-10 15:39:41 +0300
committerTortue Torche <tortuetorche@users.noreply.github.com>2019-12-10 17:03:55 +0300
commitc780daf33d3e2574bb9578f87be262c285662337 (patch)
treef8039b22aa4e76a9201d079b0b0ceaa955607d46 /tests
parent046c2f8904e27545b6f7c2fc120e0b4dab209390 (diff)
Fix PHPUnit::setUp() method for integration tests.
Signed-off-by: Tortue Torche <tortuetorche@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Integration/AppTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Integration/AppTest.php b/tests/Integration/AppTest.php
index 346eace3..3255b35e 100644
--- a/tests/Integration/AppTest.php
+++ b/tests/Integration/AppTest.php
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
/**
* @copyright Copyright (c) 2017 Kai Schröer <git@schroeer.co>
*
@@ -30,7 +30,7 @@ class AppTest extends TestCase {
private $container;
- public function setUp() {
+ protected function setUp(): void {
parent::setUp();
$app = new App('polls');
$this->container = $app->getContainer();