Failed Conditions
Push — master ( 0b116d...5bfd4c )
by Jonathan
01:33 queued 01:08
created

Language::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
ccs 0
cts 1
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Inflector;
6
7
final class Language
8
{
9
    public const ENGLISH          = 'english';
10
    public const FRENCH           = 'french';
11
    public const NORWEGIAN_BOKMAL = 'norwegian-bokmal';
12
    public const PORTUGUESE       = 'portuguese';
13
    public const SPANISH          = 'spanish';
14
    public const TURKISH          = 'turkish';
15
16
    private function __construct()
17
    {
18
    }
19
}
20