empty_options.php 296 B

1234567891011
  1. <?hh
  2. namespace FastRoute\TestFixtures;
  3. function empty_options_simple(): \FastRoute\Dispatcher {
  4. return \FastRoute\simpleDispatcher($collector ==> {}, shape());
  5. }
  6. function empty_options_cached(): \FastRoute\Dispatcher {
  7. return \FastRoute\cachedDispatcher($collector ==> {}, shape());
  8. }