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