Release 2.33.0 (#5438)

This commit is contained in:
Kevin Papst
2025-04-22 20:43:22 +02:00
committed by GitHub
parent a70c803158
commit e663cc2b02
58 changed files with 1404 additions and 899 deletions

View File

@@ -17,6 +17,12 @@ use PHPUnit\Framework\TestCase;
*/
class DateFormatterTest extends TestCase
{
public function testGetFormat(): void
{
$formatter = new DateFormatter();
self::assertEquals('yyyy-mm-dd', $formatter->getFormat());
}
public function testFormatValueReturnsFormattedDateForDateTime(): void
{
$formatter = new DateFormatter();