wellrested/src/Routing/Route/StaticRouteInterface.php

12 lines
171 B
PHP

<?php
namespace WellRESTed\Routing\Route;
interface StaticRouteInterface extends RouteInterface
{
/**
* @return string
*/
public function getPath();
}