for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebStream\Test\Model\Entity;
class Test1Entitiy
{
private $id;
private $name;
public function setId($id)
$this->id = $id;
}
public function getId()
return $this->id;
public function setName($name)
$this->name = $name;
public function getName()
return $this->name;