2017-03-18 22:30:36 -04:00
|
|
|
<?php
|
2017-11-16 20:23:18 -05:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-03-18 22:30:36 -04:00
|
|
|
declare(strict_types=1);
|
2021-04-14 11:17:01 -04:00
|
|
|
|
2017-03-27 23:12:12 -05:00
|
|
|
namespace JKingWeb\Arsse\REST;
|
2017-03-18 22:30:36 -04:00
|
|
|
|
2018-01-04 23:08:53 -05:00
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
|
2017-03-18 22:30:36 -04:00
|
|
|
interface Handler {
|
2017-08-29 10:50:31 -04:00
|
|
|
public function __construct();
|
2018-01-04 23:08:53 -05:00
|
|
|
public function dispatch(ServerRequestInterface $req): ResponseInterface;
|
2017-08-29 10:50:31 -04:00
|
|
|
}
|