InstallerRouteBuilder.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php
  2. 8.9.x core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php
  3. 10 core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php

Namespace

Drupal\Core\Installer

File

core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php

View source
<?php

namespace Drupal\Core\Installer;

use Drupal\Core\Routing\RouteBuilder;

/**
 * Manages the router in the installer.
 */
class InstallerRouteBuilder extends RouteBuilder {
    
    /**
     * {@inheritdoc}
     *
     * Overridden to return no routes.
     *
     * @todo Convert installer steps into routes; add an installer.routing.yml.
     */
    protected function getRouteDefinitions() {
        return [];
    }

}

Classes

Title Deprecated Summary
InstallerRouteBuilder Manages the router in the installer.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.