summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug55407.phpt
blob: 925640554a515434b70513040826df2280fadc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #55407 (Impossible to prototype DateTime::createFromFormat)
--INI--
error_reporting=-1
--XFAIL--
Bug #55407
--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";
?>
--EXPECTF--
DONE