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

fault property must be an instance of \Zend\XmlRpc\Fault #4857

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/Zend/XmlRpc/Request/Stdin.php
Expand Up @@ -10,7 +10,7 @@
namespace Zend\XmlRpc\Request;

use Zend\XmlRpc\Request as XmlRpcRequest;
use Zend\XmlRpc\Server\Exception as ServerException;
use Zend\XmlRpc\Fault;

/**
* XmlRpc Request object -- Request via STDIN
Expand Down Expand Up @@ -39,7 +39,7 @@ public function __construct()
{
$fh = fopen('php://stdin', 'r');
if (!$fh) {
$this->fault = new ServerException(630);
$this->fault = new Fault(630);
return;
}

Expand Down