IOFormat   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace nstdio\svg\output;
3
4
/**
5
 * Class IOFormat
6
 *
7
 * @package nstdio\svg\output
8
 * @author  Edgar Asatryan <[email protected]>
9
 */
10
final class IOFormat
11
{
12
    const PNG = 'png';
13
14
    const PNG8 = 'png8';
15
16
    const PNG24 = 'png24';
17
18
    const JPEG = 'jpeg';
19
20
    const JPG = 'jpg';
21
22
    const JP2 = 'jp2';
23
24
    const TIFF = 'tiff';
25
26
    const TTF = 'ttf';
27
28
    const BMP = 'bmp';
29
30
    const GIF = 'gif';
31
32
    private function __construct()
33
    {
34
    }
35
}