NewAliasManager.php

Namespace

Drupal\path_alias_deprecated_test

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

Title Deprecated Summary
NewAliasManager New test implementation for the alias manager.

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