Files
expose/app/Http/Server.php
Marcel Pociot 6cf206e0a2 wip
2020-04-29 16:49:33 +02:00

16 lines
285 B
PHP

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