xref: /PHP-7.4/ext/date/tests/bug75928.phpt (revision fddd7e38)
1--TEST--
2Bug #75928: Argument 2 for `DateTimeZone::listIdentifiers()` should accept `null`
3--FILE--
4<?php
5declare(strict_types=1);
6var_dump(is_array(DateTimeZone::listIdentifiers(\DateTimeZone::ALL, null)));
7?>
8--EXPECT--
9bool(true)
10