Projekt

Obecné

Profil

Stáhnout (467 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
<?php
2

    
3
namespace App\Enum;
4

    
5

    
6
class ELogicalConditions
7
{
8
    const NOT_USED = '';
9
    const AND = 'and';
10
    const OR = 'or';
11
    const AND_NOT = 'and_not';
12

    
13
    public static $selectValues = [
14
        self::NOT_USED => '- NOT USED -',
15
        self::AND => 'AND',
16
        self::OR => 'OR',
17
        self::AND_NOT => 'AND NOT'
18
    ];
19

    
20
    public static $whereCondition = [
21
        self::AND => 'AND',
22
        self::OR => 'OR',
23
        self::AND_NOT => 'AND NOT'
24
    ];
25
}
(2-2/3)