2017-03-19 02:30:36 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse\REST;
|
2017-03-19 02:30:36 +00:00
|
|
|
|
|
|
|
interface Handler {
|
2017-08-29 14:50:31 +00:00
|
|
|
public function __construct();
|
|
|
|
public function dispatch(Request $req): Response;
|
|
|
|
}
|