| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 6 | public function invoke(MethodInvocation $invocation) |
|
| 27 | { |
||
| 28 | $ro = $invocation->proceed(); |
||
| 29 | 6 | assert($ro instanceof ResourceObject); |
|
| 30 | 6 | $isCreated = $ro->code === 201 && isset($ro->headers['Location']); |
|
| 31 | 6 | if (! $isCreated) { |
|
| 32 | 1 | return $ro; |
|
| 33 | } |
||
| 34 | 5 | ||
| 35 | $ro->setRenderer($this->renderer); |
||
| 36 | 5 | ||
| 37 | return $ro; |
||
| 38 | } |
||
| 40 |