Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / lib / Drupal / Core / Installer / InstallerRouteBuilder.php
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 }