LastKnownResponse   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

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