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;
10
11 use \Joomla\Application\Cli\Output\Processor\ColorProcessor as RealColorProcessor;
12
13 /**
14 * Class ColorProcessor.
15 *
16 * @since 1.0
17 * @deprecated 2.0 Use \Joomla\Application\Cli\Output\Processor\ColorProcessor
18 */
19 class ColorProcessor extends RealColorProcessor
20 {
21 }
22