You are here

public function SkypeManager::__construct in Skype 8

SkypeManager constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory:

\Drupal\Core\Path\CurrentPathStack $current_path:

Drupal\path_alias\AliasManagerInterface $alias_manager:

\Drupal\Core\Path\PathMatcherInterface $path_matcher:

File

src/Manager/SkypeManager.php, line 29

Class

SkypeManager

Namespace

Drupal\skype\Manager

Code

public function __construct(ConfigFactoryInterface $config_factory, CurrentPathStack $current_path, AliasManagerInterface $alias_manager, PathMatcherInterface $path_matcher) {
  $this->config = $config_factory
    ->get('skype.settings');
  $this->currentPath = $current_path;
  $this->aliasManager = $alias_manager;
  $this->pathMatcher = $path_matcher;
}