asdf
This commit is contained in:
parent
790ae18648
commit
40bd7df272
107 changed files with 8372 additions and 186 deletions
11
implementation/14-middleware/src/Http/Pipeline.php
Normal file
11
implementation/14-middleware/src/Http/Pipeline.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
namespace Lubian\NoFramework\Http;
|
||||
|
||||
use Psr\Http\Message\ResponseInterface;
|
||||
use Psr\Http\Message\ServerRequestInterface;
|
||||
|
||||
interface Pipeline
|
||||
{
|
||||
public function dispatch(ServerRequestInterface $request): ResponseInterface;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue