mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-21 04:28:40 +00:00
14 lines
208 B
PHP
Executable File
14 lines
208 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Models;
|
|
|
|
final class NullAccount extends Account
|
|
{
|
|
public function __construct(int $id = 0)
|
|
{
|
|
parent::__construct();
|
|
$this->id = $id;
|
|
}
|
|
}
|