for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ScayTrase\Api\JsonRpc;
final class JsonRpcNotificationResponse implements JsonRpcResponseInterface
{
/** {@inheritdoc} */
public function getVersion()
return JsonRpcClient::VERSION;
}
public function isSuccessful()
return true;
public function getError()
return null;
public function getBody()
public function getId()
/**
* {@inheritdoc}
* @throws \LogicException
*/
public function jsonSerialize()
throw new \LogicException('Notification should not have transferable response representation');