16 lines
249 B
PHP
16 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
class AddressBookEntry
|
|
{
|
|
public function __construct(
|
|
private int $userid,
|
|
private string $first,
|
|
private string $last,
|
|
private string $nick,
|
|
)
|
|
{
|
|
// empty body
|
|
}
|
|
} |