igfs/vendor/craft-group/phroute/src/Phroute/RouteDataInterface.php

25 lines
364 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03:00
<?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();
}