You are here

public function GetValueCommand::__construct in Config Pages 8.3

Same name and namespace in other branches
  1. 8.2 src/Command/GetValueCommand.php \Drupal\config_pages\Command\GetValueCommand::__construct()

Constructs a new GetValueCommand object.

Parameters

LoggerChannelFactoryInterface $loggerChannelFactory:

File

src/Command/GetValueCommand.php, line 31

Class

GetValueCommand
Class GetValueCommand.

Namespace

Drupal\config_pages\Command

Code

public function __construct(LoggerChannelFactoryInterface $loggerChannelFactory) {
  $this->logger = $loggerChannelFactory
    ->get('config_pages');
  parent::__construct();
}