abstract class InputAwareHelper in Zircon Profile 8
Same name and namespace in other branches
- 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
- class \Symfony\Component\Console\Helper\Helper implements HelperInterface
- class \Symfony\Component\Console\Helper\InputAwareHelper implements InputAwareInterface
Expanded class hierarchy of InputAwareHelper
File
- vendor/
symfony/ console/ Helper/ InputAwareHelper.php, line 22
Namespace
Symfony\Component\Console\HelperView source
abstract class InputAwareHelper extends Helper implements InputAwareInterface {
protected $input;
/**
* {@inheritdoc}
*/
public function setInput(InputInterface $input) {
$this->input = $input;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Helper:: |
protected | property | ||
Helper:: |
public static | function | ||
Helper:: |
public static | function | ||
Helper:: |
public | function |
Gets the helper set associated with this helper. Overrides HelperInterface:: |
|
Helper:: |
public | function |
Sets the helper set associated with this helper. Overrides HelperInterface:: |
|
Helper:: |
public static | function | Returns the length of a string, using mb_strwidth if it is available. | |
Helper:: |
public static | function | ||
HelperInterface:: |
public | function | Returns the canonical name of this helper. | 8 |
InputAwareHelper:: |
protected | property | ||
InputAwareHelper:: |
public | function |
Sets the Console Input. Overrides InputAwareInterface:: |