diff options
author | Derick Rethans <github@derickrethans.nl> | 2015-01-20 21:44:36 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2015-01-20 21:44:36 +0000 |
commit | a3a529411e00a118fb955af212829b0bf5958dd8 (patch) | |
tree | 09c626c9bd7d1b0ab3771bbeb117a4a599b0c03f | |
parent | fecbb0e7c2989a4da5ed660def787c2f174da1e8 (diff) | |
parent | 1d09926e333148b19ac24e630be8ff209c69b371 (diff) | |
download | php-git-a3a529411e00a118fb955af212829b0bf5958dd8.tar.gz |
Merge branch 'PHP-5.6'
-rw-r--r-- | ext/date/php_date.c | 2 | ||||
-rw-r--r-- | ext/date/tests/bug55407.phpt | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index b9e109aa09..c6db35b709 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -163,7 +163,7 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_date_create_from_format, 0, 0, 2) ZEND_ARG_INFO(0, format) ZEND_ARG_INFO(0, time) - ZEND_ARG_INFO(0, object) + ZEND_ARG_OBJ_INFO(0, object, DateTimeZone, 1) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_date_parse, 0, 0, 1) diff --git a/ext/date/tests/bug55407.phpt b/ext/date/tests/bug55407.phpt new file mode 100644 index 0000000000..00c3356461 --- /dev/null +++ b/ext/date/tests/bug55407.phpt @@ -0,0 +1,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"; +?> +--EXPECTF-- +DONE |