Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
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() |
||
33 |