IteratorTypes   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 13
c 1
b 0
f 1
dl 0
loc 17
ccs 0
cts 1
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
/**
4
 * This file is part of the tarantool/client package.
5
 *
6
 * (c) Eugene Leonovich <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Tarantool\Client\Schema;
15
16
final class IteratorTypes
17
{
18
    public const EQ = 0;
19
    public const REQ = 1;
20
    public const ALL = 2;
21
    public const LT = 3;
22
    public const LE = 4;
23
    public const GE = 5;
24
    public const GT = 6;
25
    public const BITS_ALL_SET = 7;
26
    public const BITS_ANY_SET = 8;
27
    public const BITS_ALL_NOT_SET = 9;
28
    public const OVERLAPS = 10;
29
    public const NEIGHBOR = 11;
30
31
    private function __construct()
32
    {
33
    }
34
}
35