. */ namespace Doctrine\Common\Cli; /** * CLI Output Style * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.0 * @version $Revision$ * @author Guilherme Blanco * @author Jonathan Wage * @author Roman Borschel */ class Style { /** * @var string Background color */ private $_background; /** * @var string Foreground color */ private $_foreground; /** * @var array Formatting options */ private $_options = array(); /** * @param string $foreground Foreground color name * @param string $background Background color name * @param array $options Formatting options */ public function __construct($foreground = null, $background = null, $options = array()) { $this->_foreground = strtoupper($foreground); $this->_background = strtoupper($background); $this->_options = $options; } /** * Retrieves the foreground color name * * @return string */ public function getForeground() { return $this->_foreground; } /** * Retrieves the background color name * * @return string */ public function getBackground() { return $this->_background; } /** * Retrieves the formatting options * * @return string */ public function getOptions() { return $this->_options; } }