14 lines
315 B
PHP
14 lines
315 B
PHP
|
<?php
|
||
|
|
||
|
namespace FastRoute\Dispatcher;
|
||
|
|
||
|
class CharCountBasedTest extends DispatcherTest {
|
||
|
protected function getDispatcherClass() {
|
||
|
return 'FastRoute\\Dispatcher\\CharCountBased';
|
||
|
}
|
||
|
|
||
|
protected function getDataGeneratorClass() {
|
||
|
return 'FastRoute\\DataGenerator\\CharCountBased';
|
||
|
}
|
||
|
}
|