ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
FastRoute\TestFixtures Namespace Reference

Functions

 all_options_simple ()
 
 all_options_cached ()
 
 empty_options_simple ()
 
 empty_options_cached ()
 
 no_options_simple ()
 
 no_options_cached ()
 

Function Documentation

◆ all_options_cached()

FastRoute\TestFixtures\all_options_cached ( )

Definition at line 17 of file all_options.php.

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}

◆ all_options_simple()

FastRoute\TestFixtures\all_options_simple ( )

Definition at line 5 of file all_options.php.

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}

◆ empty_options_cached()

FastRoute\TestFixtures\empty_options_cached ( )

Definition at line 9 of file empty_options.php.

10 return \FastRoute\cachedDispatcher($collector ==> {}, shape());
11}

◆ empty_options_simple()

FastRoute\TestFixtures\empty_options_simple ( )

Definition at line 5 of file empty_options.php.

6 return \FastRoute\simpleDispatcher($collector ==> {}, shape());
7}

◆ no_options_cached()

FastRoute\TestFixtures\no_options_cached ( )

Definition at line 9 of file no_options.php.

10 return \FastRoute\cachedDispatcher($collector ==> {});
11}

◆ no_options_simple()

FastRoute\TestFixtures\no_options_simple ( )

Definition at line 5 of file no_options.php.

6 return \FastRoute\simpleDispatcher($collector ==> {});
7}