芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/libraries/src/Application/CLI/Output/Processor/ProcessorInterface.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Application\CLI\Output\Processor; \defined('JPATH_PLATFORM') or die; /** * Interface for a command line output processor * * @since 4.0.0 * @deprecated 5.0 Use the `joomla/console` package instead */ interface ProcessorInterface { /** * Process the provided output into a string. * * @param string $output The string to process. * * @return string * * @since 4.0.0 */ public function process($output); }