fatcode/http-server

View on GitHub
src/Server/HttpServerHandler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace FatCode\HttpServer\Server;

interface HttpServerHandler
{
    public function start(HttpServerSettings $settings, MiddlewarePipeline $pipeline) : void;
}