for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Task\TaskBundle\Entity;
use Task\TaskInterface;
class Task
{
/**
* @var int
*/
private $id;
* @var string
private $uuid;
* @var TaskInterface
private $task;
* @var \DateTime
private $executionDate;
* @var bool
private $completed;
* @return int
public function getId()
return $this->id;
}
* @return string
public function getUuid()
return $this->uuid;
* @param string $uuid
public function setUuid($uuid)
$this->uuid = $uuid;
* @return TaskInterface
public function getTask()
return $this->task;
* @param TaskInterface $task
public function setTask($task)
$this->task = $task;
* @return \DateTime
public function getExecutionDate()
return $this->executionDate;
* @param \DateTime $executionDate
public function setExecutionDate($executionDate)
$this->executionDate = $executionDate;
* @return bool
public function isCompleted()
return $this->completed;
* @param bool $completed
public function setCompleted($completed)
$this->completed = $completed;