mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
16 lines
292 B
PHP
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;
|
|
}
|
|
}
|