17 lines
326 B
PHP
17 lines
326 B
PHP
|
<?php
|
||
|
|
||
|
namespace FastRoute\Dispatcher;
|
||
|
|
||
|
class GroupCountBasedTest extends DispatcherTest
|
||
|
{
|
||
|
protected function getDispatcherClass()
|
||
|
{
|
||
|
return 'FastRoute\\Dispatcher\\GroupCountBased';
|
||
|
}
|
||
|
|
||
|
protected function getDataGeneratorClass()
|
||
|
{
|
||
|
return 'FastRoute\\DataGenerator\\GroupCountBased';
|
||
|
}
|
||
|
}
|