mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
12 lines
229 B
PHP
12 lines
229 B
PHP
<?php
|
|
namespace MVC\Models;
|
|
|
|
class User
|
|
{
|
|
public function __construct(
|
|
public string $email,
|
|
private string $password,
|
|
public ?string $first_name = null,
|
|
public ?string $last_name = null) {}
|
|
}
|