%PDF- %PDF-
Direktori : /home/ugotscom/bos_naturals/vendor/cboden/ratchet/src/Ratchet/Http/ |
Current File : /home/ugotscom/bos_naturals/vendor/cboden/ratchet/src/Ratchet/Http/CloseResponseTrait.php |
<?php namespace Ratchet\Http; use Ratchet\ConnectionInterface; use GuzzleHttp\Psr7 as gPsr; use GuzzleHttp\Psr7\Response; trait CloseResponseTrait { /** * Close a connection with an HTTP response * @param \Ratchet\ConnectionInterface $conn * @param int $code HTTP status code * @return null */ private function close(ConnectionInterface $conn, $code = 400, array $additional_headers = []) { $response = new Response($code, array_merge([ 'X-Powered-By' => \Ratchet\VERSION ], $additional_headers)); $conn->send(gPsr\str($response)); $conn->close(); } }