ColumnCase   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 21
ccs 0
cts 1
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\DBAL;
6
7
/**
8
 * Contains portable column case conversions.
9
 */
10
final class ColumnCase
11
{
12
    /**
13
     * Convert column names to upper case.
14
     *
15
     * @see \PDO::CASE_UPPER
16
     */
17
    public const UPPER = 1;
18
19
    /**
20
     * Convert column names to lower case.
21
     *
22
     * @see \PDO::CASE_LOWER
23
     */
24
    public const LOWER = 2;
25
26
    /**
27
     * This class cannot be instantiated.
28
     */
29
    private function __construct()
30
    {
31
    }
32
}
33