public function HelpMessageHelper::__construct in Acquia Lift Connector 8
Constructor.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory service.
\Drupal\Core\Utility\LinkGeneratorInterface $link_generator: The link generator.
File
- src/
Service/ Helper/ HelpMessageHelper.php, line 37 - Contains \Drupal\acquia_lift\Service\Helper\HelpMessageHelper.
Class
Namespace
Drupal\acquia_lift\Service\HelperCode
public function __construct(ConfigFactoryInterface $config_factory, LinkGeneratorInterface $link_generator) {
$this->credentialSettings = $config_factory
->get('acquia_lift.settings')
->get('credential');
$this->linkGenerator = $link_generator;
}