Completed
Pull Request — develop (#3586)
by Sergei
64:13 queued 45s
created

PostgreSQL   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Tests\DBAL\Functional\Platform\ColumnTest;
6
7
use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
8
use Doctrine\Tests\DBAL\Functional\Platform\ColumnTest;
9
10
final class PostgreSQL extends ColumnTest
11
{
12
    protected function setUp() : void
13
    {
14
        parent::setUp();
15
16
        $this->requirePlatform(PostgreSqlPlatform::class);
17
    }
18
}
19