Routes can be organized by priorities, up versioned but backwards compatible
$this->get('/admin/system/model/role/create', function ($request, $response) {
...
}, 10);
Where the highest priority (in this case 10) will be executed first (highest-to-lowest)