Passed
Pull Request — master (#267)
by Felipe
07:20
created

PostgresDoc12::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * PHPPgAdmin v6.0.0-RC9-3-gd93ec300
5
 */
6
7
namespace PHPPgAdmin\Help;
8
9
/**
10
 * Help links for PostgreSQL 12.x documentation.
11
 */
12
class PostgresDoc12 extends PostgresDoc11
13
{
14
    public function __construct($conf, $major_version)
15
    {
16
        parent::__construct($conf, $major_version);
17
    }
18
}
19