You are here

public function SetValueCommand::__construct in Config Pages 8.3

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

Constructs a new SetValueCommand object.

Parameters

LoggerChannelFactoryInterface $logger_factory:

File

src/Command/SetValueCommand.php, line 34

Class

SetValueCommand
Class SetValueCommand.

Namespace

Drupal\config_pages\Command

Code

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