Issues (217)

src/database/Postgres90.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.0 support
12
 *
13
 * Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $
14
 */
15
class Postgres90 extends Postgres91
16
{
17
    /**
18
     * @var float
19
     */
20
    public $major_version = 9.0;
21
22
    /**
23
     * @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...
24
     */
25
    public $help_classname = \PHPPgAdmin\Help\PostgresDoc90::class;
26
}
27