Passed
Pull Request — master (#2893)
by Šimon
14:29 queued 16s
created

PostgreSQL100Keywords   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
1
<?php
2
3
namespace Doctrine\DBAL\Platforms\Keywords;
4
5
/**
6
 * PostgreSQL 100 reserved keywords list.
7
 *
8
 * @link   www.doctrine-project.org
9
 * @since  2.6
10
 */
11
class PostgreSQL100Keywords extends PostgreSQL94Keywords
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function getName() : string
17
    {
18
        return 'PostgreSQL100';
19
    }
20
}
21