Passed
Pull Request — master (#2893)
by Šimon
12:53
created

PostgreSQL100PlatformTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A createPlatform() 0 3 1
1
<?php
2
3
namespace Doctrine\Tests\DBAL\Platforms;
4
5
use Doctrine\DBAL\Platforms\PostgreSQL100Platform;
6
7
class PostgreSQL100PlatformTest extends PostgreSQL94PlatformTest
8
{
9
    /**
10
     * {@inheritdoc}
11
     */
12
    public function createPlatform() : PostgreSQL100Platform
13
    {
14
        return new PostgreSQL100Platform();
15
    }
16
}
17