Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
56 | protected function buildContent() |
||
57 | { |
||
58 | return array_reverse( |
||
59 | array_filter( |
||
60 | array_merge( |
||
61 | array_filter($this->apiProblem->additionalDetails()), |
||
62 | array_filter([ |
||
63 | 'type' => $this->apiProblem->type(), |
||
64 | 'detail' => $this->apiProblem->detail(), |
||
65 | 'status' => $this->apiProblem->status(), |
||
66 | 'title' => $this->apiProblem->title(), |
||
67 | ]) |
||
68 | ) |
||
69 | ), |
||
70 | true |
||
71 | ); |
||
72 | } |
||
73 | } |
||
74 |