mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
17 lines
323 B
PHP
17 lines
323 B
PHP
|
<?php
|
||
|
|
||
|
namespace FastRoute\Dispatcher;
|
||
|
|
||
|
class CharCountBasedTest extends DispatcherTest
|
||
|
{
|
||
|
protected function getDispatcherClass()
|
||
|
{
|
||
|
return 'FastRoute\\Dispatcher\\CharCountBased';
|
||
|
}
|
||
|
|
||
|
protected function getDataGeneratorClass()
|
||
|
{
|
||
|
return 'FastRoute\\DataGenerator\\CharCountBased';
|
||
|
}
|
||
|
}
|