summaryrefslogtreecommitdiffstats
path: root/tests/lib/DateTimeFormatterTest.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:48:31 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:48:31 +0200
commita7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (patch)
tree629f395d91f3cf15497bbfd6597e6df9b081cf36 /tests/lib/DateTimeFormatterTest.php
parent1762a409f954fd9a66e7572704ea9ba7813601b4 (diff)
downloadnextcloud-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/DateTimeFormatterTest.php')
-rw-r--r--tests/lib/DateTimeFormatterTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/DateTimeFormatterTest.php b/tests/lib/DateTimeFormatterTest.php
index 1470f3b6bf4..42870bf6281 100644
--- a/tests/lib/DateTimeFormatterTest.php
+++ b/tests/lib/DateTimeFormatterTest.php
@@ -11,12 +11,12 @@ namespace Test;
class DateTimeFormatterTest extends TestCase {
/** @var \OC\DateTimeFormatter */
protected $formatter;
- static protected $oneMinute = 60;
- static protected $oneHour = 3600;
- static protected $oneDay;
- static protected $oneYear;
+ protected static $oneMinute = 60;
+ protected static $oneHour = 3600;
+ protected static $oneDay;
+ protected static $oneYear;
- static protected $defaultTimeZone;
+ protected static $defaultTimeZone;
public static function setUpBeforeClass(): void {
parent::setUpBeforeClass();