Passed
Pull Request — develop (#262)
by Felipe
04:12
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
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