Postgres13
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 11
wmc 0
1
<?php
2
3
/**
4
 * PHPPgAdmin 6.1.3
5
 */
6
7
namespace PHPPgAdmin\Database;
8
9
/**
10
 * @file
11
 * PostgreSQL 13.x support
12
 */
13
/**
14
 * Class to add support for Postgres13.
15
 * (Which doesn't exist yet, but it's better than rejecting connections).
16
 */
17
class Postgres13 extends Postgres12
18
{
19
    /**
20
     * @var float
21
     */
22
    public $major_version = 13;
23
24
    /**
25
     * @var class-string
0 ignored issues
show
Documentation Bug introduced by
The doc comment class-string at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string.
Loading history...
26
     */
27
    public $help_classname = \PHPPgAdmin\Help\PostgresDoc12::class;
28
}
29