mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-21 23:16:59 +00:00
16 lines
326 B
PHP
16 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';
|
|
}
|
|
}
|