1 | <?php |
||
13 | class CtoolsFallbackRouteEnhancer implements RouteEnhancerInterface { |
||
14 | |||
15 | /** |
||
16 | * The module handler service. |
||
17 | * |
||
18 | * @var \Drupal\Core\Extension\ModuleHandlerInterface |
||
19 | */ |
||
20 | protected $moduleHandler; |
||
21 | |||
22 | /** |
||
23 | * Constructs a CtoolsFallbackRouteEnhancer object. |
||
24 | * |
||
25 | * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler |
||
26 | * Module handler service. |
||
27 | */ |
||
28 | public function __construct(ModuleHandlerInterface $module_handler) { |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function enhance(array $defaults, Request $request) { |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function applies(Route $route) { |
||
49 | |||
50 | } |
||
51 |