BinaryData   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 1
dl 0
loc 15
ccs 0
cts 8
cp 0
rs 10
c 1
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getContentEncoding() 0 2 1
A getContentType() 0 2 1
A getData() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PascalDeVink\CloudEvents\V03;
6
7
final class BinaryData implements Data
8
{
9
10
    public function getContentEncoding() : ContentEncoding
11
    {
12
        // TODO: Implement getContentEncoding() method.
13
    }
14
15
    public function getContentType() : ContentType
16
    {
17
        // TODO: Implement getContentType() method.
18
    }
19
20
    public function getData()
21
    {
22
        // TODO: Implement getData() method.
23
    }
24
}
25