You are here

public function AliasManagerDecorator::__construct in Drupal 8

AliasManagerDecorator constructor.

Parameters

\Drupal\Core\Path\AliasManagerInterface $alias_manager: The decorated alias manager.

File

core/modules/path_alias/tests/modules/path_alias_deprecated_test/src/AliasManagerDecorator.php, line 25

Class

AliasManagerDecorator
Test alias manager decorator.

Namespace

Drupal\path_alias_deprecated_test

Code

public function __construct(AliasManagerInterface $alias_manager) {
  $this->aliasManager = $alias_manager;
}