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