. */ namespace Doctrine\ORM\Tools\Cli; class Style { private $_background; private $_foreground; private $_options = array(); public function __construct($foreground = null, $background = null, $options = array()) { $this->_foreground = strtoupper($foreground); $this->_background = strtoupper($background); $this->_options = $options; } public function getForeground() { return $this->_foreground; } public function getBackground() { return $this->_background; } public function getOptions() { return $this->_options; } }