for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\GeoChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\MediumTextStyle;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\TriggerTrait;
/**
* @author Christophe Meneses
*/
class Tooltip
{
* @var MediumTextStyle
protected $textStyle;
use TriggerTrait;
public function __construct()
$this->textStyle = new MediumTextStyle();
}
* @return MediumTextStyle
public function getTextStyle()
return $this->textStyle;