25 lines
347 B
PHP
Executable File
25 lines
347 B
PHP
Executable File
<?php
|
|
/**
|
|
* Sleepy - a REST framework
|
|
*
|
|
*
|
|
* A PHP Rest Framework valuing convention over configuration,
|
|
* but aiming to be as flexible as possible
|
|
*
|
|
* @author Timothy J. Warren
|
|
*/
|
|
|
|
namespace Sleepy\Core;
|
|
|
|
class Router {
|
|
|
|
protected $class;
|
|
protected $method;
|
|
|
|
public function __construct($config = [])
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
// End of core/Router.php
|