2017-03-18 22:30:36 -04:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-27 23:12:12 -05:00
|
|
|
namespace JKingWeb\Arsse\REST;
|
2017-03-18 22:30:36 -04:00
|
|
|
|
|
|
|
interface Handler {
|
2017-08-29 10:50:31 -04:00
|
|
|
public function __construct();
|
|
|
|
public function dispatch(Request $req): Response;
|
|
|
|
}
|