I want to use two placeholders within a fast route in zend expressive / laminas mezzio.
routes.php
$app->get('/api/users/{userId:\d+}/pages/[{id:\d+}]', [App\Page\PageHandler::class], 'api.pages');
ConfigProvider.php
[
'__class__' => RouteBasedResourceMetadata::class,
'resource_class' => Page\PageEntity::class,
'route' => 'api.page',
'extractor' => ObjectPropertyHydrator::class,
],
[
'__class__' => RouteBasedCollectionMetadata::class,
'collection_class' => Page\PageCollection::class,
'collection_relation' => 'pages',
'route' => 'api.pages',
],
This error occurs:
Route
api.page expects at least parameter values for [userId,id], but received [id]
There is a problem with the mapping…
How can I add a second paramtere in de Metadata Mapping? I thought there would be an auto-mapping…