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
![]() |
|||
26 | */ |
||
27 | public $help_classname = \PHPPgAdmin\Help\PostgresDoc12::class; |
||
28 | } |
||
29 |