Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. HelperSet.php

function HelperSet::__construct

Parameters

HelperInterface[] $helpers:

File

vendor/symfony/console/Helper/HelperSet.php, line 31

Class

HelperSet
HelperSet represents a set of helpers to be used with a command.

Namespace

Symfony\Component\Console\Helper

Code

public function __construct(array $helpers = []) {
    foreach ($helpers as $alias => $helper) {
        $this->set($helper, \is_int($alias) ? null : $alias);
    }
}
RSS feed
Powered by Drupal