mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-10 21:42:17 +00:00
11 lines
227 B
PHP
11 lines
227 B
PHP
<?php
|
|
namespace Pecee\SimpleRouter;
|
|
|
|
interface IControllerRoute {
|
|
|
|
public function getController();
|
|
public function setController($controller);
|
|
public function getMethod();
|
|
public function setMethod($method);
|
|
|
|
} |