Former\Form\Group::inlineHelp PHP Method

inlineHelp() public method

Add an inline help
public inlineHelp ( string $help, array $attributes = [] )
$help string The help text
$attributes array Facultative attributes
    public function inlineHelp($help, $attributes = array())
    {
        // If no help text, do nothing
        if (!$help) {
            return false;
        }
        $this->help['inline'] = $this->app['former.framework']->createHelp($help, $attributes);
    }