21 lines
297 B
PHP
21 lines
297 B
PHP
<?php
|
|
|
|
namespace Http\Handler\Abstracts;
|
|
|
|
use Annotation\Inject;
|
|
use Psr\Http\Server\MiddlewareInterface;
|
|
use Server\Constrict\ResponseInterface;
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
abstract class Middleware implements MiddlewareInterface
|
|
{
|
|
|
|
|
|
#[Inject(ResponseInterface::class)]
|
|
public ResponseInterface $response;
|
|
|
|
}
|