for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class Timing
{
protected $createdAt;
/**
* @return mixed
*/
public function getCreatedAt()
return $this->createdAt;
}
* @param mixed $createdAt
public function setCreatedAt($createdAt)
$this->createdAt = $createdAt;