for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpJsonRpc\Core\Call;
class CallNotification extends AbstractCall
{
/**
* @var string
*/
private $rawMethod;
* @var array
private $rawParams;
* NotificationUnit constructor.
*
* @param string $method
* @param array $params
public function __construct($method, array $params)
$this->rawMethod = $method;
$this->rawParams = $params;
}
* @return string
public function getRawMethod(): string
return $this->rawMethod;
* @return array
public function getRawParams(): array
return $this->rawParams;