cleaning up router comments.
This commit is contained in:
parent
96c43d6d87
commit
f9856988bb
|
@ -256,11 +256,12 @@ protected static function controller($bundle, $method, $destination, $segments)
|
||||||
*/
|
*/
|
||||||
protected static function controller_key($segments, $directory)
|
protected static function controller_key($segments, $directory)
|
||||||
{
|
{
|
||||||
|
$reverse = array_reverse($segments, true);
|
||||||
|
|
||||||
// To find the proper controller, we need to iterate backwards through
|
// To find the proper controller, we need to iterate backwards through
|
||||||
// the URI segments and take the first file that matches. That file
|
// the URI segments and take the first file that matches. That file
|
||||||
// should be the deepest possible controller matched by the URI.
|
// should be the deepest possible controller matched by the URI.
|
||||||
$reverse = array_reverse($segments, true);
|
// Once we find it, we'll return its index key.
|
||||||
|
|
||||||
foreach ($reverse as $key => $value)
|
foreach ($reverse as $key => $value)
|
||||||
{
|
{
|
||||||
$controller = implode('/', array_slice($segments, 0, $key + 1)).EXT;
|
$controller = implode('/', array_slice($segments, 0, $key + 1)).EXT;
|
||||||
|
|
Loading…
Reference in New Issue