Files
expose/app/HttpServer/HttpServer.php
Marcel Pociot 2b03398f40 wip
2020-04-14 21:19:23 +02:00

16 lines
292 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 = 15242880;
}
}