Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AddNewFaqInputIds
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3/**
4 * Ids of inputIds of the Add new faq form
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public License,
7 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
8 * obtain one at https://mozilla.org/MPL/2.0/.
9 *
10 * @package   phpMyFAQ
11 * @author    Thorsten Rinne <thorsten@phpmyfaq.de>
12 * @author    Jan Harms <modelrailroader@gmx-topmail.de>
13 * @copyright 2024-2026 phpMyFAQ Team
14 * @license   https://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
15 * @link      https://www.phpmyfaq.de
16 * @since     2024-03-21
17 */
18
19declare(strict_types=1);
20
21namespace phpMyFAQ\Enums\Forms;
22
23enum AddNewFaqInputIds: int
24{
25    case TITLE = 1;
26
27    case MESSAGE = 2;
28
29    case NAME = 3;
30
31    case EMAIL = 4;
32
33    case CATEGORY = 5;
34
35    case QUESTION = 6;
36
37    case ANSWER = 7;
38
39    case KEYWORDS = 8;
40}