summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2015-02-05 10:01:26 +0100
committerJulien Pauli <jpauli@php.net>2015-02-05 10:01:26 +0100
commitf457487e163502480f74a70bf9272fd003fc1919 (patch)
tree7be825b8d823bbc8712d57da3d6784d103f18331
parent75357354147710ae8e27e5f6da7a6e2834b4f73f (diff)
downloadphp-git-f457487e163502480f74a70bf9272fd003fc1919.tar.gz
Revert "Fixed bug #55407 (Impossible to prototype DateTime::createFromFormat)"
This reverts commit 8e19705a93d785cd1ff8ba3a69699b00169fea47.
-rw-r--r--ext/date/php_date.c2
-rw-r--r--ext/date/tests/bug55407.phpt17
2 files changed, 1 insertions, 18 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index 8a7aeae5ac..f8571b91b5 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_OBJ_INFO(0, object, DateTimeZone, 1)
+ ZEND_ARG_INFO(0, object)
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
deleted file mode 100644
index 00c3356461..0000000000
--- a/ext/date/tests/bug55407.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---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