Passed
Push — master ( f1ff91...53e7cc )
by Romain
59s
created

TagRequest::buildBody()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
namespace Kerox\Messenger\Request;
4
5
class TagRequest extends AbstractRequest
6
{
7
8
    /**
9
     * TagRequest constructor.
10
     *
11
     * @param string $pageToken
12
     */
13 1
    public function __construct($pageToken)
14
    {
15 1
        parent::__construct($pageToken);
16 1
    }
17
18
    /**
19
     * @return null
20
     */
21 1
    protected function buildHeaders()
22
    {
23 1
        return;
24
    }
25
26
    /**
27
     * @return null
28
     */
29 1
    protected function buildBody()
30
    {
31 1
        return;
32
    }
33
34
    /**
35
     * @return array
36
     */
37 1
    protected function buildQuery(): array
38
    {
39 1
        return parent::buildQuery();
40
    }
41
}
42