mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
18 lines
407 B
PHP
18 lines
407 B
PHP
--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
|