mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-17 00:37:52 +00:00
9 lines
131 B
PHP
9 lines
131 B
PHP
<?php
|
|
namespace Pecee\SimpleRouter;
|
|
|
|
interface ILoadableRoute {
|
|
|
|
public function getUrl();
|
|
public function setUrl($url);
|
|
|
|
} |