Files
public
src
Controller
Entity
AddressBookEntry.php
Route.php
User.php
Repository
Service
bootstrap.php
templates
.gitinore
LICENSE
README.md
config.json.sample
addressbook/src/Entity/AddressBookEntry.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
}
}