/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Console
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Console/Helper.php (1705B)
*/
protected $_defaultConfig = [];
/**
* ConsoleIo instance.
*
* @var \Cake\Console\ConsoleIo
*/
protected $_io;
/**
* Constructor.
*
* @param \Cake\Console\ConsoleIo $io The ConsoleIo instance to use.
* @param array
$config The settings for this helper.
*/
public function __construct(ConsoleIo $io, array $config = [])
{
$this->_io = $io;
$this->setConfig($config);
}
/**
* This method should output content using `$this->_io`.
*
* @param array $args The arguments for the helper.
* @return void
*/
abstract public function output(array $args): void;
}