This commit is contained in:
Dennis Eichhorn 2021-11-29 20:08:13 +01:00
parent 3bbe1887f8
commit 5353859c8b

39
Models/NullPromotion.php Normal file
View File

@ -0,0 +1,39 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Marketing\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Marketing\Models;
/**
* Null model
*
* @package Modules\Marketing\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
final class NullPromotion extends Promotion
{
/**
* Constructor
*
* @param int $id Model id
*
* @since 1.0.0
*/
public function __construct(int $id = 0)
{
parent::__construct();
$this->id = $id;
}
}