mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-15 18:23:26 +03:00
41 lines
436 B
PHP
41 lines
436 B
PHP
<?php
|
|
|
|
class DummyController
|
|
{
|
|
public function index()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
public function method1()
|
|
{
|
|
|
|
}
|
|
|
|
public function method2()
|
|
{
|
|
|
|
}
|
|
|
|
public function param($params = null)
|
|
{
|
|
echo join(', ', func_get_args());
|
|
}
|
|
|
|
public function getTest()
|
|
{
|
|
echo 'getTest';
|
|
}
|
|
|
|
public function postTest()
|
|
{
|
|
echo 'postTest';
|
|
}
|
|
|
|
public function putTest()
|
|
{
|
|
echo 'putTest';
|
|
}
|
|
|
|
} |