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

BasicResponse   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A setBasics() 0 5 1
1
<?php
2
3
namespace kalanis\UploadPerPartes\Responses;
4
5
6
/**
7
 * Class BasicResponse
8
 * @package kalanis\UploadPerPartes\Responses
9
 * Responses from server to client
10
 */
11
class BasicResponse
12
{
13
    public const STATUS_OK = 'OK';
14
    public const STATUS_FAIL = 'FAIL';
15
16
    public string $serverKey = '';
17
    public string $status = self::STATUS_OK;
18
    public string $errorMessage = self::STATUS_OK;
19
    public string $roundaboutClient = '';
20
21
    public function setBasics(string $serverKey, string $roundaboutClient): self
22
    {
23
        $this->serverKey = $serverKey;
24
        $this->roundaboutClient = $roundaboutClient;
25
        return $this;
26
    }
27
}
28