D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
plesk
/
ratchetphp
/
src
/
Ratchet
/
Http
/
Filename :
CloseResponseTrait.php
back
Copy
<?php namespace Ratchet\Http; use Ratchet\ConnectionInterface; use GuzzleHttp\Psr7\Message; 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(Message::toString($response)); $conn->close(); } }