A route collection.
public __construct( array $routes = [] )
$routes
public __call( $method, array $arguments )
$method
$arguments
protected add( array $definition )
$definition
public getIterator( void )
IteratorAggregate::getIterator()
public offsetExists( $offset )
$offset
ArrayAccess::offsetExists()
public offsetGet( $id )
$id
ArrayAccess::offsetGet()
public offsetSet( string $id, array $route )
$route
Define a route.
ArrayAccess::offsetSet()
public offsetUnset( string $offset )
Removes a route.
ArrayAccess::offsetUnset()
public find( string $uri, array|null & $captured = null, string $method = Request::METHOD_ANY, string $namespace = null ) : ICanBoogie\Routing\Route|false|null
$uri
& $captured
$namespace
ICanBoogie\Routing\Route
Search for a route matching the specified pathname and method.
The URI to match. If the URI includes a query string it is removed before searching for a matching route.
$captured
The parameters captured from the URI. If the URI included a query string, its parsed params are stored under the __query__ key.
__query__
public any( void ) : ICanBoogie\Routing\Routes
ICanBoogie\Routing\Routes
any(string $pattern, $controller, array $options=[]) Add a route for any HTTP method.
public connect( void ) : ICanBoogie\Routing\Routes
connect(string $pattern, $controller, array $options=[]) Add a route for the HTTP method CONNECT.
public delete( void ) : ICanBoogie\Routing\Routes
delete(string $pattern, $controller, array $options=[]) Add a route for the HTTP method DELETE.
public get( void ) : ICanBoogie\Routing\Routes
get(string $pattern, $controller, array $options=[]) Add a route for the HTTP method GET.
public head( void ) : ICanBoogie\Routing\Routes
head(string $pattern, $controller, array $options=[]) Add a route for the HTTP method HEAD.
public options( void ) : ICanBoogie\Routing\Routes
options(string $pattern, $controller, array $options=[]) Add a route for the HTTP method OPTIONS.
public post( void ) : ICanBoogie\Routing\Routes
post(string $pattern, $controller, array $options=[]) Add a route for the HTTP method POST.
public put( void ) : ICanBoogie\Routing\Routes
put(string $pattern, $controller, array $options=[]) Add a route for the HTTP method PUT.
public patch( void ) : ICanBoogie\Routing\Routes
patch(string $pattern, $controller, array $options=[]) Add a route for the HTTP method PATCH
public trace( void ) : ICanBoogie\Routing\Routes
trace(string $pattern, $controller, array $options=[]) Add a route for the HTTP method TRACE.
DEFAULT_ROUTE_CLASS : string
'ICanBoogie\Routing\Route'
protected $routes : array
Route definitions.
[]
protected $instances : ICanBoogie\Routing\Route[]
ICanBoogie\Routing\Route[]
Route instances.