Test Failed
Push — master ( e493d7...b1ea68 )
by Petr
11:01
created

CheckResponse   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A setChecksum() 0 5 1
1
<?php
2
3
namespace kalanis\UploadPerPartes\Responses;
4
5
6
/**
7
 * Class CheckResponse
8
 * @package kalanis\UploadPerPartes\Responses
9
 * Responses from server to client
10
 */
11
class CheckResponse extends BasicResponse
12
{
13
    public string $checksum = '';
14
    public string $method = '';
15
16
    public function setChecksum(string $method, string $checksum): self
17
    {
18
        $this->method = $method;
19
        $this->checksum = $checksum;
20
        return $this;
21
    }
22
}
23