Bulk   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 10
c 0
b 0
f 0
dl 0
loc 38
rs 10
wmc 7

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getPath() 0 3 1
A getMethod() 0 3 1
A getContentType() 0 3 1
A setBody() 0 9 4
1
<?php
2
3
namespace Manticoresearch\Endpoints;
4
5
use Manticoresearch\Request;
6
7
/**
8
 * Class Bulk
9
 * @package Manticoresearch\Endpoints
10
 */
11
class Bulk extends Request
12
{
13
    /**
14
     * @return mixed|string
15
     */
16
    public function getPath()
17
    {
18
        return '/json/bulk';
19
    }
20
21
    /**
22
     * @return mixed|string
23
     */
24
    public function getMethod()
25
    {
26
        return 'POST';
27
    }
28
29
    /**
30
     * @return mixed|string
31
     */
32
    public function getContentType()
33
    {
34
        return 'application/x-ndjson';
35
    }
36
37
    /**
38
     * @param mixed $body
39
     */
40
    public function setBody($body = null)
41
    {
42
        if (is_array($body) || $body instanceof \Traversable) {
43
            $this->body = '';
44
            foreach ($body as $b) {
45
                $this->body .= json_encode($b, true) . "\n";
0 ignored issues
show
Bug introduced by
true of type true is incompatible with the type integer expected by parameter $flags of json_encode(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

45
                $this->body .= json_encode($b, /** @scrutinizer ignore-type */ true) . "\n";
Loading history...
46
            }
47
        } else {
48
            $this->body = $body;
49
        }
50
    }
51
}
52