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 StrokeWidthTrait
{
* The width in pixels.
*
* Default: '0'
* @var int|float
protected $strokeWidth;
* @param int|float $strokeWidth
* @return $this
public function setStrokeWidth($strokeWidth)
$this->strokeWidth = $strokeWidth;
return $this;
}