oms-OnlineResourceWatcher/app/web/Models/NullAccount.php
2022-09-26 23:17:08 +02:00

14 lines
208 B
PHP

<?php
declare(strict_types=1);
namespace Models;
final class NullAccount extends Account
{
public function __construct(int $id = 0)
{
parent::__construct();
$this->id = $id;
}
}