for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JhFlexiTimeTest\Stdlib\Hydrator;
class TestEntity
{
protected $start;
public function setStartTime(\DateTime $start)
$this->start = $start;
}
public function getStartTime()
return $this->start;