Passed
Pull Request — develop (#262)
by Felipe
04:12
created

PostgresDoc12   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
0 ignored issues
show
Coding Style introduced by
You must use "/**" style comments for a file comment
Loading history...
3
// declare(strict_types=1);
4
5
/**
6
 * PHPPgAdmin vv6.0.0-RC8-16-g13de173f
7
 *
8
 */
0 ignored issues
show
Coding Style introduced by
Additional blank lines found at end of doc comment
Loading history...
9
10
namespace PHPPgAdmin\Help;
11
12
/**
13
 * Help links for PostgreSQL 12.x documentation.
14
 */
15
class PostgresDoc12 extends PostgresDoc11
16
{
17
    public function __construct($conf, $major_version)
18
    {
19
        parent::__construct($conf, $major_version);
20
    }
21
}
22