diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 16:48:31 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 16:48:31 +0200 |
commit | a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (patch) | |
tree | 629f395d91f3cf15497bbfd6597e6df9b081cf36 /tests/lib/TestCase.php | |
parent | 1762a409f954fd9a66e7572704ea9ba7813601b4 (diff) | |
download | nextcloud-server-a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3.tar.gz nextcloud-server-a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3.zip |
Add visibility to all properties and move static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/TestCase.php')
-rw-r--r-- | tests/lib/TestCase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/TestCase.php b/tests/lib/TestCase.php index 9c9eb8cc04f..a1708f9cf01 100644 --- a/tests/lib/TestCase.php +++ b/tests/lib/TestCase.php @@ -38,10 +38,10 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase { private $commandBus; /** @var IDBConnection */ - static protected $realDatabase = null; + protected static $realDatabase = null; /** @var bool */ - static private $wasDatabaseAllowed = false; + private static $wasDatabaseAllowed = false; /** @var array */ protected $services = []; |