1 <?php
2 /**
3 * Part of the Joomla Framework Application Package
4 *
5 * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE
7 */
8
9 namespace Joomla\Application\Cli\Output\Processor;
10
11 /**
12 * Class ProcessorInterface.
13 *
14 * @since 1.1.0
15 */
16 interface ProcessorInterface
17 {
18 /**
19 * Process the provided output into a string.
20 *
21 * @param string $output The string to process.
22 *
23 * @return string
24 *
25 * @since 1.1.0
26 */
27 public function process($output);
28 }
29