| 1 | <?php namespace Limoncello\Core\Routing; |
||
| 27 | class RouterConfig extends ArrayConfig implements RouterConfigInterface |
||
| 28 | { |
||
| 29 | const DEFAULTS = [ |
||
| 30 | RouterConfigInterface::KEY_GENERATOR => GroupCountBasedGenerator::class, |
||
| 31 | RouterConfigInterface::KEY_DISPATCHER => GroupCountBasedDispatcher::class, |
||
| 32 | ]; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Constructor. |
||
| 36 | */ |
||
| 37 | 1 | public function __construct() |
|
| 43 | } |
||
| 44 |