interface HelperInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Helper/HelperInterface.php \Symfony\Component\Console\Helper\HelperInterface
HelperInterface is the interface all helpers must implement.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Symfony\Component\Console\Helper\HelperInterface
Expanded class hierarchy of HelperInterface
All classes that implement HelperInterface
File
- vendor/
symfony/ console/ Helper/ HelperInterface.php, line 19
Namespace
Symfony\Component\Console\HelperView source
interface HelperInterface {
/**
* Sets the helper set associated with this helper.
*
* @param HelperSet $helperSet A HelperSet instance
*/
public function setHelperSet(HelperSet $helperSet = null);
/**
* Gets the helper set associated with this helper.
*
* @return HelperSet A HelperSet instance
*/
public function getHelperSet();
/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
*/
public function getName();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HelperInterface:: |
public | function | Gets the helper set associated with this helper. | 1 |
HelperInterface:: |
public | function | Returns the canonical name of this helper. | 8 |
HelperInterface:: |
public | function | Sets the helper set associated with this helper. | 1 |