1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/lib/REST/Handler.php
2017-08-29 10:50:31 -04:00

8 lines
174 B
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\Arsse\REST;
interface Handler {
public function __construct();
public function dispatch(Request $req): Response;
}