Completed
Push — master ( d06bab...02e31a )
by Eugene
03:46
created

JoinRequest::getType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Tarantool\Client\Request;
4
5
use Tarantool\Client\IProto;
6
7
class JoinRequest implements Request
8
{
9
    private $serverUuid;
10
11
    public function __construct($serverUuid)
12
    {
13
        $this->serverUuid = $serverUuid;
14
    }
15
16
    public function getType()
17
    {
18
        return self::TYPE_JOIN;
19
    }
20
21
    public function getBody()
22
    {
23
        return [
24
            IProto::SERVER_UUID => $this->serverUuid,
25
        ];
26
    }
27
}
28