You are here

public function RouterBase::__construct in Drupal 7 to 8/9 Module Upgrader 8

Constructs a RouterBase.

File

src/Routing/RouterBase.php, line 21

Class

RouterBase
Base class for RouterInterface implementations.

Namespace

Drupal\drupalmoduleupgrader\Routing

Code

public function __construct(array $elements = []) {
  parent::__construct($elements);
  $this->dispatcher = new EventDispatcher();
}