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 MaxTrait
{
* The maximum value to show.
*
* @var int
protected $max;
* @param int $max
* @return $this
public function setMax($max)
$this->max = $max;
return $this;
}