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

PostgresDoc10.php « help « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e5e9ec11a8b2a5b1d4a0e785502b6e0ad4e01b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

/**
 * PHPPgAdmin 6.0.0
 */

namespace PHPPgAdmin\Help;

/**
 * Help links for PostgreSQL 10.x documentation.
 *
 * @SuppressWarnings(PHPMD)
 */
class PostgresDoc10 extends PostgresDoc96
{
    public function __construct($conf, $major_version)
    {
        parent::__construct($conf, $major_version);
    }
}