DB
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 20
c 0
b 0
f 0
1
<?php
2
/**
3
 * @company MTE Telecom, Ltd.
4
 * @author Roman Malashin <[email protected]>
5
 */
6
7
namespace Nnx\DataGrid\Condition;
8
9
/**
10
 * Class DB
11
 * @package Nnx\DataGrid\Condition
12
 */
13
class DB extends SimpleCondition
14
{
15
    const CRITERIA_TYPE_NOT_EQUAL = '!=';
16
17
    const CRITERIA_TYPE_IS = 'is';
18
19
    const CRITERIA_TYPE_IS_NOT = 'is not';
20
21
    const CRITERIA_TYPE_GREATER = '>';
22
23
    const CRITERIA_TYPE_LESS = '<';
24
25
    const CRITERIA_TYPE_LESS_EQUAL = '<=';
26
27
    const CRITERIA_TYPE_GREATER_EQUAL = '>=';
28
29
    const CRITERIA_TYPE_IN = 'in';
30
31
    const CRITERIA_TYPE_NOT_IN = 'not in';
32
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
33