Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Postgres13.php « Database « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fad964d1104046f7fc0cc91b8f945ef8c9c7638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

/**
 * PHPPgAdmin6
 */

namespace PHPPgAdmin\Database;

use PHPPgAdmin\Help\PostgresDoc12;

/**
 * @file
 * PostgreSQL 13.x support
 */
/**
 * Class to add support for Postgres13.
 * (Which doesn't exist yet, but it's better than rejecting connections).
 */
class Postgres13 extends Postgres12
{
    /**
     * @var float
     */
    public $major_version = 13;

    /**
     * @var class-string
     */
    public $help_classname = PostgresDoc12::class;
}