lithium\net\http\Route::$_template
The URL template string that the route matches, i.e.
'/admin/{:controller}/{:id:\d+}/{:args}'.
This string can contain any combination of...
- fixed elements, i.e.
'/admin' - plain capture elements, i.e.
'/{:controller}' - capture elements paired with regular expressions, i.e.
'/{:id:\d+}' - capture elements paired with named regular expression patterns,
'/{:id:ID}' - the speciall wildcard capture element
'{:args}'
Source
protected $_template = '';