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

PostgresDoc11   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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 11.x documentation.
11
 */
12
class PostgresDoc11 extends PostgresDoc10
13
{
14
    public function __construct($conf, $major_version)
15
    {
16
        parent::__construct($conf, $major_version);
17
    }
18
}
19