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 BoldTrait
{
* @var bool
protected $bold;
* @param bool $bold
*
* @return $this
public function setBold($bold)
$this->bold = $bold;
return $this;
}