ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
all_options.php
Go to the documentation of this file.
1<?hh
2
4
6 return \FastRoute\simpleDispatcher(
7 $collector ==> {},
8 shape(
9 'routeParser' => \FastRoute\RouteParser\Std::class,
10 'dataGenerator' => \FastRoute\DataGenerator\GroupCountBased::class,
11 'dispatcher' => \FastRoute\Dispatcher\GroupCountBased::class,
12 'routeCollector' => \FastRoute\RouteCollector::class,
13 ),
14 );
15}
16
18 return \FastRoute\cachedDispatcher(
19 $collector ==> {},
20 shape(
21 'routeParser' => \FastRoute\RouteParser\Std::class,
22 'dataGenerator' => \FastRoute\DataGenerator\GroupCountBased::class,
23 'dispatcher' => \FastRoute\Dispatcher\GroupCountBased::class,
24 'routeCollector' => \FastRoute\RouteCollector::class,
25 'cacheFile' => '/dev/null',
26 'cacheDisabled' => false,
27 ),
28 );
29}