for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Scrumban\Model;
class Version
{
/** @var string **/
protected $id;
/** @var \DateTime **/
protected $plannedAt;
protected $releasedAt;
public function setId(string $id): self
$this->id = $id;
return $this;
}
public function getId(): string
return $this->id;
public function setPlannedAt(\DateTime $plannedAt): self
$this->plannedAt = $plannedAt;
public function getPlannedAt(): \DateTime
return $this->plannedAt;
public function setReleasedAt(\DateTime $releasedAt): self
$this->releasedAt = $releasedAt;
public function getReleasedAt(): \DateTime
return $this->releasedAt;