Issues (217)

src/database/Postgres95.php (1 issue)

1
<?php
2
3
/**
4
 * PHPPgAdmin 6.1.3
5
 */
6
7
namespace PHPPgAdmin\Database;
8
9
/**
10
 * @file
11
 * PostgreSQL 9.5 support
12
 */
13
class Postgres95 extends Postgres96
14
{
15
    public $typIndexes = ['BTREE', 'BRIN', 'RTREE', 'GIST', 'GIN', 'HASH'];
16
17
    /**
18
     * @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...
19
     */
20
    public $help_classname = \PHPPgAdmin\Help\PostgresDoc95::class;
21
22
    /**
23
     * @var float
24
     */
25
    public $major_version = 9.5;
26
}
27