igfs/vendor/craft-group/phroute/src/Phroute/RouteDataInterface.php
2024-07-03 14:41:15 +03:00

25 lines
364 B
PHP

<?php namespace Phroute\Phroute;
/**
* Interface RouteDataInterface
* @package Phroute\Phroute
*/
interface RouteDataInterface {
/**
* @return array
*/
public function getStaticRoutes();
/**
* @return array
*/
public function getVariableRoutes();
/**
* @return array
*/
public function getFilters();
}