/opt/alt/php55/usr/share/pear/Symfony/Component/Console/Helper
NameSizeModeActions
DescriptorHelper.php25610644editdlrm
DialogHelper.php164460644editdlrm
FormatterHelper.php22360644editdlrm
Helper.php14510644editdlrm
HelperInterface.php10110644editdlrm
HelperSet.php25260644editdlrm
InputAwareHelper.php7470644editdlrm
ProgressHelper.php118870644editdlrm
TableHelper.php128200644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/Console/Helper/HelperInterface.php (1011B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Helper; /** * HelperInterface is the interface all helpers must implement. * * @author Fabien Potencier * * @api */ interface HelperInterface { /** * Sets the helper set associated with this helper. * * @param HelperSet $helperSet A HelperSet instance * * @api */ public function setHelperSet(HelperSet $helperSet = null); /** * Gets the helper set associated with this helper. * * @return HelperSet A HelperSet instance * * @api */ public function getHelperSet(); /** * Returns the canonical name of this helper. * * @return string The canonical name * * @api */ public function getName(); }