CliOutput

定义命令行输出处理程序的基类

抽象 已弃用
自从

4.0.0

已弃用

4.3 将在 6.0 中删除。请使用 joomla/console 包代替。

Joomla CMS

方法

__construct

构造函数

__construct(\Joomla\CMS\Application\CLI\Output\Processor\ProcessorInterface processor = null) : 
自从

4.0.0

参数

处理器

ProcessorInterface|null 输出处理器。

响应

混合

getProcessor

获取处理器

getProcessor() : \Joomla\CMS\Application\CLI\Output\Processor\ProcessorInterface
自从

4.0.0

抛出

RuntimeException

响应

ProcessorInterface

out

将字符串写入输出处理程序。

out( text = '',  nl = true) : 
抽象的
自从

4.0.0

参数

文本

string 要显示的文本。

nl

bool 在输出字符串末尾追加新行的值(默认值:true)。

响应

$this

setProcessor

设置处理器

setProcessor(\Joomla\CMS\Application\CLI\Output\Processor\ProcessorInterface processor) : 
自从

4.0.0

参数

处理器

ProcessorInterface 输出处理器。

响应

$this

属性

处理器

输出处理对象

自从

4.0.0

类型

ProcessorInterface