Cake\Console\ConsoleIo::styles PHP Method

styles() public method

Add a new output style or get defined styles.
See also: Cake\Console\ConsoleOutput::styles()
public styles ( string | null $style = null, array | boolean | null $definition = null ) : mixed
$style string | null The style to get or create.
$definition array | boolean | null The array definition of the style to change or create a style or false to remove a style.
return mixed If you are getting styles, the style or null will be returned. If you are creating/modifying styles true will be returned.
    public function styles($style = null, $definition = null)
    {
        $this->_out->styles($style, $definition);
    }