function ParamConverterManagerTest::providerTestSetRouteParameterConverters
Provides data for testSetRouteParameterConverters().
File
- 
              core/
tests/ Drupal/ Tests/ Core/ ParamConverter/ ParamConverterManagerTest.php, line 160  
Class
- ParamConverterManagerTest
 - @coversDefaultClass \Drupal\Core\ParamConverter\ParamConverterManager[[api-linebreak]] @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.