gitlab_medici/app/enum/EAdjacentLines.php @ b81f638d
1 |
<?php
|
---|---|
2 |
|
3 |
namespace App\Enum; |
4 |
|
5 |
|
6 |
class EAdjacentLines |
7 |
{
|
8 |
const LINES_0 = 0; |
9 |
const LINES_1 = 1; |
10 |
const LINES_2 = 2; |
11 |
const LINES_3 = 3; |
12 |
const LINES_5 = 5; |
13 |
const LINES_10 = 10; |
14 |
const LINES_15 = 15; |
15 |
|
16 |
public static $lines = [ |
17 |
self::LINES_0, |
18 |
self::LINES_1, |
19 |
self::LINES_2, |
20 |
self::LINES_3, |
21 |
self::LINES_5, |
22 |
self::LINES_10, |
23 |
self::LINES_15 |
24 |
];
|
25 |
|
26 |
public static $selectValues = [ |
27 |
self::LINES_0 => '0', |
28 |
self::LINES_1 => '1', |
29 |
self::LINES_2 => '2', |
30 |
self::LINES_3 => '3', |
31 |
self::LINES_5 => '5', |
32 |
self::LINES_10 => '10', |
33 |
self::LINES_15 => '15' |
34 |
];
|
35 |
|
36 |
public static $defaultLines = self::LINES_0; |
37 |
}
|