for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\Output\Javascript;
use CMEN\GoogleChartsBundle\Output\DateOutputInterface;
/**
* @author Christophe Meneses
*/
class DateOutput implements DateOutputInterface
{
public function draw(\DateTimeInterface $date): string
return 'new Date('.$date->format('Y').', '.((int) $date->format('n') - 1).', '.$date->format('j').', '.
$date->format('H').', '.$date->format('i').', '.$date->format('s').')';
}