21 lines
327 B
PHP
21 lines
327 B
PHP
<?php
|
|
|
|
namespace FreightQuote\User;
|
|
|
|
class User
|
|
{
|
|
public function __construct(
|
|
private string $email,
|
|
private string $password,
|
|
) {}
|
|
|
|
public function getEmail(): string
|
|
{
|
|
return $this->email;
|
|
}
|
|
|
|
public function getPassword(): string
|
|
{
|
|
return $this->password;
|
|
}
|
|
}
|