Files
expose/app/HttpServer/HttpServer.php
Marcel Pociot e5e53b8b68 wip
2020-04-22 12:32:29 +02:00

16 lines
295 B
PHP

<?php
namespace App\HttpServer;
use Ratchet\Http\HttpServerInterface;
class HttpServer extends \Ratchet\Http\HttpServer
{
public function __construct(HttpServerInterface $component)
{
parent::__construct($component);
$this->_reqParser->maxSize = 15242880000;
}
}