Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit e45137d

Browse files
committed
Merge branch 'hotfix/3307' into develop
Forward port zendframework/zendframework#3307 Conflicts: library/Zend/Code/Generator/DocBlock/Tag/LicenseTag.php library/Zend/Code/Generator/DocBlock/Tag/ParamTag.php library/Zend/Code/Generator/DocBlock/Tag/ReturnTag.php

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Client/Cookies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ protected function _matchPath($domains, $path)
337337
*/
338338
public static function fromResponse(Response $response, $ref_uri)
339339
{
340-
$jar = new self();
340+
$jar = new static();
341341
$jar->addCookiesFromResponse($response, $ref_uri);
342342
return $jar;
343343
}

src/Cookies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ protected function _matchPath($domains, $path)
343343
*/
344344
public static function fromResponse(Response $response, $ref_uri)
345345
{
346-
$jar = new self();
346+
$jar = new static();
347347
$jar->addCookiesFromResponse($response, $ref_uri);
348348
return $jar;
349349
}

0 commit comments

Comments
 (0)