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 StrokeTrait
{
* The color as an HTML color string.
*
* Default: '#666'
* @var string
protected $stroke;
* @return $this
public function setStroke(string $stroke)
$this->stroke = $stroke;
return $this;
}