for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Auth\Model;
class Account {
private $accountId;
private $password;
private $name;
public function getAccountId()
{
return $this->accountId;
}
public function setAccountId($accountId)
$this->accountId = $accountId;
public function getPassword()
return $this->password;
public function setPassword($password)
$this->password = $password;
public function getName()
return $this->name;
public function setName($name)
$this->name = $name;