Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
77 | 2 | public function execute() |
|
78 | { |
||
79 | 2 | $response = $this->client->request('POST', "/{$this->database->getName()}/_bulk_docs", [ |
|
80 | 2 | 'body' => JSONEncoder::encode($this->data), |
|
81 | 2 | 'headers' => ['Content-Type' => 'application/json'], |
|
82 | 2 | ]); |
|
83 | |||
84 | 2 | return JSONEncoder::decode((string) $response->getBody()); |
|
85 | } |
||
86 | } |
||
87 |