for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PRReviewWatcher\Entity;
class Project
{
/**
* @var int
*/
private $id;
* @var string
private $name;
private $branch;
private $credential;
private $comment;
private $alive;
private $numberTaskList;
public function getId()
return $this->id;
}
public function setId($id)
$this->id = $id;
public function getName()
return $this->name;
public function setName($name)
$this->name = $name;
public function getBranch()
return $this->branch;
public function setBranch($branch)
$this->branch = $branch;
public function getCredential()
return $this->credential;
public function setCredential($credential)
$this->credential = $credential;
public function getComment()
return $this->comment;
public function setComment($comment)
$this->comment = $comment;
public function getAlive()
return (boolean)$this->alive;
public function setAlive($alive)
$this->alive = $alive;
public function getNumberTaskList()
return $this->numberTaskList;
public function setNumberTaskList($numberTaskList)
$this->numberTaskList = $numberTaskList;