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

LastKnownResponse::setLastKnown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 4
rs 10
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
    public function setLastKnown(int $lastKnownPart): self
16
    {
17
        $this->lastKnownPart = $lastKnownPart;
18
        return $this;
19
    }
20
}
21