Route: $app->route('/demo/inject/url/{id}', function ($id) { ... }). The framework injected $id by name from the URL pattern. Nothing else was injected.
GET /demo/inject/url/42 {
"id": "42",
"injected": [
"id"
],
"note": "URL param only"
}