for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
trait ColorTrait
{
* Color, expressed as either a color name (e.g., "blue") or an RGB value (e.g., "#adf").
*
* @var string
protected $color;
* @param string $color
* @return $this
public function setColor($color)
$this->color = $color;
return $this;
}