Test Failed
Branch master (62528d)
by Zangra
14:14 queued 12:04
created

ApiVersions   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Bpost\BpostApiClient\Common;
5
6
final class ApiVersions
7
{
8
    public const V3    = 'v3';
9
    public const V3_1 = 'v3.1';
10
    public const V3_3  = 'v3.3';
11
    public const V3_4  = 'v3.4';
12
    public const V3_5  = 'v3.5';
13
    public const V5    = 'v5';
14
15
    private function __construct() {}
16
}