From a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Fri, 10 Apr 2020 16:48:31 +0200 Subject: Add visibility to all properties and move static keyword Signed-off-by: Christoph Wurst --- tests/lib/DateTimeFormatterTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/lib/DateTimeFormatterTest.php') 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(); -- cgit v1.2.3