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 RpcResultNull
*
* @package Onnov\JsonRpcServer\Result
class RpcResultNull extends RpcResultAbstract
{
* @return null
public function getResult()
return $this->result;
}