You are here

abstract class InputAwareHelper in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Helper/InputAwareHelper.php \Symfony\Component\Console\Helper\InputAwareHelper

An implementation of InputAwareInterface for Helpers.

@author Wouter J <waldio.webdesign@gmail.com>

Hierarchy

Expanded class hierarchy of InputAwareHelper

File

vendor/symfony/console/Helper/InputAwareHelper.php, line 22

Namespace

Symfony\Component\Console\Helper
View source
abstract class InputAwareHelper extends Helper implements InputAwareInterface {
  protected $input;

  /**
   * {@inheritdoc}
   */
  public function setInput(InputInterface $input) {
    $this->input = $input;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Helper::$helperSet protected property
Helper::formatMemory public static function
Helper::formatTime public static function
Helper::getHelperSet public function Gets the helper set associated with this helper. Overrides HelperInterface::getHelperSet
Helper::setHelperSet public function Sets the helper set associated with this helper. Overrides HelperInterface::setHelperSet
Helper::strlen public static function Returns the length of a string, using mb_strwidth if it is available.
Helper::strlenWithoutDecoration public static function
HelperInterface::getName public function Returns the canonical name of this helper. 8
InputAwareHelper::$input protected property
InputAwareHelper::setInput public function Sets the Console Input. Overrides InputAwareInterface::setInput