Cake\Console\Shell::helper PHP Method

helper() public method

Create and render the output for a helper object. If the helper object has not already been loaded, it will be loaded and constructed.
public helper ( string $name, array $settings = [] ) : Cake\Console\Helper
$name string The name of the helper to render
$settings array Configuration data for the helper.
return Cake\Console\Helper The created helper instance.
    public function helper($name, array $settings = [])
    {
        return $this->_io->helper($name, $settings);
    }