for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Appliga\Customer\Domain\Model;
class Customer
{
protected $id;
protected $name;
protected $email;
protected $password;
public function __construct($id, $name, Email $email, $password)
$this->id = $id;
$this->name = $name;
$this->email = $email;
$this->password = $password;
}
/**
* @return mixed
*/
public function getId()
return $this->id;
public function getName()
return $this->name;
public function getEmail()
return $this->email;
public function getPassword()
return $this->password;