Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3307' into develop
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Fault.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public function loadXml($fault)
*/
public static function isFault($xml)
{
$fault = new self();
$fault = new static();
try {
$isFault = $fault->loadXml($xml);
} catch (Exception\ExceptionInterface $e) {
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Fault.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function __construct(\Exception $e)
*/
public static function getInstance(\Exception $e)
{
return new self($e);
return new static($e);
}

/**
Expand Down

0 comments on commit 6102afa

Please sign in to comment.