Skip to content
Snippets Groups Projects
Verified Commit 946d2715 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3313448 by rakesh.drupal: Missing AliasRepositoryInterface parameter...

Issue #3313448 by rakesh.drupal: Missing AliasRepositoryInterface parameter type hint in the AliasManager constructor
parent 9514c30a
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ class AliasManager implements AliasManagerInterface {
* @param \Drupal\Core\Cache\CacheBackendInterface $cache
* Cache backend.
*/
public function __construct($alias_repository, AliasWhitelistInterface $whitelist, LanguageManagerInterface $language_manager, CacheBackendInterface $cache) {
public function __construct(AliasRepositoryInterface $alias_repository, AliasWhitelistInterface $whitelist, LanguageManagerInterface $language_manager, CacheBackendInterface $cache) {
$this->pathAliasRepository = $alias_repository;
$this->languageManager = $language_manager;
$this->whitelist = $whitelist;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment