You are here

NewAliasManager.php in Drupal 8

File

core/modules/path_alias/tests/modules/path_alias_deprecated_test/src/NewAliasManager.php
View source
<?php

namespace Drupal\path_alias_deprecated_test;

use Drupal\Core\Path\AliasManagerInterface;

/**
 * New test implementation for the alias manager.
 */
class NewAliasManager implements AliasManagerInterface {

  /**
   * {@inheritdoc}
   */
  public function getPathByAlias($alias, $langcode = NULL) {
  }

  /**
   * {@inheritdoc}
   */
  public function getAliasByPath($path, $langcode = NULL) {
  }

  /**
   * {@inheritdoc}
   */
  public function cacheClear($source = NULL) {
  }

}

Classes

Namesort descending Description
NewAliasManager New test implementation for the alias manager.