for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\SymfonyJsonRpcHttpServer\Event;
use Symfony\Component\EventDispatcher\Event;
use Yoanm\JsonRpcServer\Domain\Event\JsonRpcServerEvent;
/**
* Class SymfonyJsonRpcServerEvent
*/
class SymfonyJsonRpcServerEvent extends Event
{
/** @var JsonRpcServerEvent */
private $jsonRpcServerEvent;
* @param JsonRpcServerEvent $jsonRpcServerEvent
public function __construct(JsonRpcServerEvent $jsonRpcServerEvent)
$this->jsonRpcServerEvent = $jsonRpcServerEvent;
}
* @return JsonRpcServerEvent
public function getJsonRpcServerEvent() : JsonRpcServerEvent
return $this->jsonRpcServerEvent;