aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/DateTimeFormatterTest.php
diff options
context:
space:
mode:
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 8f6dacd4678..924cac9d399 100644
--- a/tests/lib/DateTimeFormatterTest.php
+++ b/tests/lib/DateTimeFormatterTest.php
@@ -77,7 +77,7 @@ class DateTimeFormatterTest extends TestCase {
/**
* @dataProvider formatTimeSpanData
*/
- public function testFormatTimeSpan($expected, $timestamp, $compare, $locale = null) {
+ public function testFormatTimeSpan($expected, $timestamp, $compare, $locale = null): void {
$this->assertEquals((string)$expected, (string)$this->formatter->formatTimeSpan($timestamp, $compare, $locale));
}
@@ -143,7 +143,7 @@ class DateTimeFormatterTest extends TestCase {
/**
* @dataProvider formatDateSpanData
*/
- public function testFormatDateSpan($expected, $timestamp, $compare = null, $locale = null) {
+ public function testFormatDateSpan($expected, $timestamp, $compare = null, $locale = null): void {
$this->assertEquals((string)$expected, (string)$this->formatter->formatDateSpan($timestamp, $compare, $locale));
}
@@ -156,7 +156,7 @@ class DateTimeFormatterTest extends TestCase {
/**
* @dataProvider formatDateData
*/
- public function testFormatDate($timestamp, $expected) {
+ public function testFormatDate($timestamp, $expected): void {
$this->assertEquals($expected, (string)$this->formatter->formatDate($timestamp));
}
@@ -170,12 +170,12 @@ class DateTimeFormatterTest extends TestCase {
/**
* @dataProvider formatDateTimeData
*/
- public function testFormatDateTime($timestamp, $timeZone, $expected) {
+ public function testFormatDateTime($timestamp, $timeZone, $expected): void {
$this->assertEquals($expected, (string)$this->formatter->formatDateTime($timestamp, 'long', 'long', $timeZone));
}
- public function testFormatDateWithInvalidTZ() {
+ public function testFormatDateWithInvalidTZ(): void {
$this->expectException(\Exception::class);
$this->formatter->formatDate(1350129205, 'long', new \DateTimeZone('Mordor/Barad-dûr'));