/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/date/tests/bug55407.phpt
17 строк
408 B
Máté Kocsis
Deprecate implicit nullable parameter types (#12959)
13 мар 2024, 23:40
Не верифицирован
13 мар 2024, 23:40
330cc5c
Код
Авторство
О чём код?
--TEST-- Bug #55407 (Impossible to prototype DateTime::createFromFormat) --INI-- error_reporting=-1 --FILE-- <?php namespace melt\core; class DateTime extends \DateTime { public static function createFromFormat($format, $time, ?\DateTimeZone $timezone = null): DateTime|false { return new DateTime(parent::createFromFormat($format, $time, $timezone)); } } echo "DONE\n"; ?> --EXPECT-- DONE