mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
10 lines
233 B
PHP
10 lines
233 B
PHP
--TEST--
|
|
Bug #75928: Argument 2 for `DateTimeZone::listIdentifiers()` should accept `null`
|
|
--FILE--
|
|
<?php
|
|
declare(strict_types=1);
|
|
var_dump(is_array(DateTimeZone::listIdentifiers(\DateTimeZone::ALL, null)));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|