| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class SymfonyJsonRpcServerEvent extends Event |
||
| 11 | { |
||
| 12 | /** @var JsonRpcServerEvent */ |
||
| 13 | private $jsonRpcServerEvent; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param JsonRpcServerEvent $jsonRpcServerEvent |
||
| 17 | */ |
||
| 18 | 2 | public function __construct(JsonRpcServerEvent $jsonRpcServerEvent) |
|
| 19 | { |
||
| 20 | 2 | $this->jsonRpcServerEvent = $jsonRpcServerEvent; |
|
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return JsonRpcServerEvent |
||
| 25 | */ |
||
| 26 | 1 | public function getJsonRpcServerEvent() : JsonRpcServerEvent |
|
| 29 | } |
||
| 30 | } |
||
| 31 |