2017-03-18 22:30:36 -04:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-28 00:12:12 -04:00
|
|
|
namespace JKingWeb\Arsse\REST;
|
2017-03-18 22:30:36 -04:00
|
|
|
|
|
|
|
interface Handler {
|
2017-03-28 18:50:00 -04:00
|
|
|
function __construct();
|
2017-04-06 21:41:21 -04:00
|
|
|
function dispatch(Request $req): Response;
|
2017-03-18 22:30:36 -04:00
|
|
|
}
|