Welcome to mirror list, hosted at ThFree Co, Russian Federation.

empty_options.php « fixtures « HackTypechecker « test « fast-route « nikic « vendor « server - github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61eb54190d9edbd4f1f1c8253e1d1e89d56d0fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?hh

namespace FastRoute\TestFixtures;

function empty_options_simple(): \FastRoute\Dispatcher {
    return \FastRoute\simpleDispatcher($collector ==> {}, shape());
}

function empty_options_cached(): \FastRoute\Dispatcher {
    return \FastRoute\cachedDispatcher($collector ==> {}, shape());
}