Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
MediaStatus
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * Jingga
4 *
5 * PHP Version 8.1
6 *
7 * @package   Modules\Media\Models
8 * @copyright Dennis Eichhorn
9 * @license   OMS License 2.0
10 * @version   1.0.0
11 * @link      https://jingga.app
12 */
13declare(strict_types=1);
14
15namespace Modules\Media\Models;
16
17/**
18 * Media status enum.
19 *
20 * @package Modules\Media\Models
21 * @license OMS License 2.0
22 * @link    https://jingga.app
23 * @since   1.0.0
24 */
25use phpOMS\Stdlib\Base\Enum;
26
27/**
28 * Media status enum.
29 *
30 * @package phpOMS\DataStorage\Database
31 * @license OMS License 2.0
32 * @link    https://jingga.app
33 * @since   1.0.0
34 */
35abstract class MediaStatus extends Enum
36{
37    public const NORMAL = 1;
38
39    public const HIDDEN = 2;
40
41    public const DELETED = 3;
42}