Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function onOpen(ConnectionInterface $connection, RequestInterface $request = null) |
||
21 | { |
||
22 | $response = new Response( |
||
23 | 200, |
||
24 | ['Content-Type' => 'application/json'], |
||
25 | json_encode(['ok' => true]) |
||
26 | ); |
||
27 | |||
28 | tap($connection)->send(\GuzzleHttp\Psr7\str($response))->close(); |
||
29 | } |
||
30 | |||
66 |