for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\entities;
/**
* @Entity @Table(name="test")
*/
class Test
{
* @Id @GeneratedValue @Column(type="integer")
* @var integer
protected $id;
* @Column(type="string")
* @var string
protected $name;
protected $description;
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 getDescription()
return $this->description;
public function setDescription($description)
$this->description = $description;