fix tests
Some checks are pending
Image optimization / general_image_workflow (push) Waiting to run
CI / general_module_workflow_php (push) Waiting to run
CI / general_module_workflow_js (push) Waiting to run

This commit is contained in:
Dennis Eichhorn 2024-05-19 04:18:07 +02:00
parent 39c8e24904
commit e03c703712

View File

@ -0,0 +1,38 @@
<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\Monitoring\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\Monitoring\Models;
/**
* Impression stat class.
*
* @package Modules\Monitoring\Models
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
final class NullImpressionStat extends ImpressionStat
{
/**
* Constructor
*
* @param int $id Model id
*
* @since 1.0.0
*/
public function __construct(int $id = 0)
{
$this->id = $id;
}
}