mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
24 lines
401 B
PHP
24 lines
401 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\DataStorage\Database\TestModel;
|
|
|
|
final class NullBaseModel extends BaseModel
|
|
{
|
|
public function __construct(int $id = 0)
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
}
|