Sync date_diff and DateTime::diff return type

This function/method cannot return false.
This commit is contained in:
Nikita Popov 2021-01-18 14:32:24 +01:00
parent 48e2e5324e
commit c31f9f7ee4
2 changed files with 3 additions and 3 deletions

View file

@ -238,7 +238,7 @@ class DateTime implements DateTimeInterface
public function getTimestamp() {} public function getTimestamp() {}
/** /**
* @return DateInterval|false * @return DateInterval
* @alias date_diff * @alias date_diff
*/ */
public function diff(DateTimeInterface $targetObject, bool $absolute = false) {} public function diff(DateTimeInterface $targetObject, bool $absolute = false) {}
@ -291,7 +291,7 @@ class DateTimeImmutable implements DateTimeInterface
public function getTimestamp() {} public function getTimestamp() {}
/** /**
* @return DateInterval|false * @return DateInterval
* @alias date_diff * @alias date_diff
*/ */
public function diff(DateTimeInterface $targetObject, bool $absolute = false) {} public function diff(DateTimeInterface $targetObject, bool $absolute = false) {}

View file

@ -1,5 +1,5 @@
/* This is a generated file, edit the .stub.php file instead. /* This is a generated file, edit the .stub.php file instead.
* Stub hash: 339c2c91f38eeaafac6134ac04573243069502f5 */ * Stub hash: 880a93d8a3461635447318317869fa7d3d7762dd */
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_strtotime, 0, 1, MAY_BE_LONG|MAY_BE_FALSE) ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_strtotime, 0, 1, MAY_BE_LONG|MAY_BE_FALSE)
ZEND_ARG_TYPE_INFO(0, datetime, IS_STRING, 0) ZEND_ARG_TYPE_INFO(0, datetime, IS_STRING, 0)