1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
<?php
/*
* Copyright 2017 Jack Sleight <http://jacksleight.com/>
* This source file is subject to the MIT license that is bundled with this package in the file LICENCE.
*/
namespace Coast\Router;
interface Routable
{
public function route(\Coast\Request $req, \Coast\Response $res, array $route);
}