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

14 lines
178 B
PHP
Executable File

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