GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

FieldType
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 22
c 0
b 0
f 0
wmc 0
lcom 0
cbo 0
1
<?php
2
3
/**
4
 * This file is part of the PHPMongo package.
5
 *
6
 * (c) Dmytro Sokil <[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
namespace Sokil\Mongo\Enum;
13
14
class FieldType
15
{
16
    const DOUBLE = 1;
17
    const STRING = 2;
18
    const OBJECT = 3;
19
    const ARRAY_TYPE = 4;
20
    const BINARY_DATA = 5;
21
    const UNDEFINED = 6; // deprecated
22
    const OBJECT_ID = 7;
23
    const BOOLEAN = 8;
24
    const DATE = 9;
25
    const NULL = 10;
26
    const REGULAR_EXPRESSION = 11;
27
    const JAVASCRIPT = 13;
28
    const SYMBOL = 14;
29
    const JAVASCRIPT_WITH_SCOPE = 15;
30
    const INT32 = 16;
31
    const TIMESTAMP = 17;
32
    const INT64 = 18;
33
    const MIN_KEY = 255;
34
    const MAX_KEY = 127;
35
}
36