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
*/
class Chart
{
use TitleTrait;
* @var string
protected $subtitle;
* @param mixed $subtitle
*
* @return $this
public function setSubtitle($subtitle)
$this->subtitle = $subtitle;
return $this;
}