for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* Project: json-rpc-server
* User: sv
* Date: 03.07.2020
* Time: 15:32
*/
declare(strict_types=1);
namespace Onnov\JsonRpcServer\Result;
* Class RpcResultError
*
* @package Onnov\JsonRpcServer\Result
class RpcResultError extends RpcResultAbstract
{
public function __construct()
$this->result = 'error';
}
* @return string
public function getResult(): string
return $this->result;
return $this->result
null
string