| Conditions | 2 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function create() |
||
| 17 | { |
||
| 18 | $path = $this->getCreatePath() ?? $this->getResourceName(); |
||
|
|
|||
| 19 | |||
| 20 | $response = $this->postRequest($path); |
||
| 21 | $this->setAttributes([]); |
||
| 22 | $this->setValues($response); |
||
| 23 | if ($this->getClient()->getLastResponse()->getStatusCode() !== 201) { |
||
| 24 | throw new ResourceNotCreated($this->getClient()->getLastResponse()->getBody()); |
||
| 25 | } |
||
| 26 | return $this; |
||
| 27 | } |
||
| 53 | } |