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 FillTrait
{
* The fill color as an HTML color string.
*
* @var string
protected $fill;
* @param string $fill
* @return $this
public function setFill($fill)
$this->fill = $fill;
return $this;
}