Mercurial > hg > isophonics-drupal-site
comparison core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\Core\Installer; | |
4 | |
5 use Drupal\Core\Routing\RouteBuilder; | |
6 | |
7 /** | |
8 * Manages the router in the installer. | |
9 */ | |
10 class InstallerRouteBuilder extends RouteBuilder { | |
11 | |
12 /** | |
13 * {@inheritdoc} | |
14 * | |
15 * Overridden to return no routes. | |
16 * | |
17 * @todo Convert installer steps into routes; add an installer.routing.yml. | |
18 */ | |
19 protected function getRouteDefinitions() { | |
20 return []; | |
21 } | |
22 | |
23 } |