function ParamConverterManagerTest::providerTestSetRouteParameterConverters
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/ParamConverter/ParamConverterManagerTest.php \Drupal\Tests\Core\ParamConverter\ParamConverterManagerTest::providerTestSetRouteParameterConverters()
- 10 core/tests/Drupal/Tests/Core/ParamConverter/ParamConverterManagerTest.php \Drupal\Tests\Core\ParamConverter\ParamConverterManagerTest::providerTestSetRouteParameterConverters()
- 11.x core/tests/Drupal/Tests/Core/ParamConverter/ParamConverterManagerTest.php \Drupal\Tests\Core\ParamConverter\ParamConverterManagerTest::providerTestSetRouteParameterConverters()
Provides data for testSetRouteParameterConverters().
File
-
core/
tests/ Drupal/ Tests/ Core/ ParamConverter/ ParamConverterManagerTest.php, line 160
Class
- ParamConverterManagerTest
- @coversDefaultClass \Drupal\Core\ParamConverter\ParamConverterManager @group ParamConverter
Namespace
Drupal\Tests\Core\ParamConverterCode
public function providerTestSetRouteParameterConverters() {
return [
[
'/test',
],
[
'/test/{id}',
[
'id' => [],
],
'applied',
],
[
'/test/{id}',
[
'id' => [
'converter' => 'predefined',
],
],
'predefined',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.