for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Managlea\Tests\Model;
class Product
{
protected $id;
protected $name;
protected $dateOfBirth;
public function getId()
return $this->id;
}
public function setName($name)
$this->name = $name;
public function getName()
return $this->name;
public function setDateOfBirth($dateOfBirth)
$this->dateOfBirth = $dateOfBirth;
public function getDateOfBirth()
return $this->dateOfBirth;