summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug55407.phpt
blob: c4638c94b335282a3a7cec98d7723b97b8a8e775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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) {
        return new DateTime(parent::createFromFormat($format, $time, $timezone));
    }
}

echo "DONE\n";
?>
--EXPECT--
DONE