Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function handle() |
||
14 | { |
||
15 | return (new Error)->setStatus($this->getStatusCode()) |
||
16 | ->setCode($this->getCode('not_found_http')) |
||
17 | ->setSource((new Source())->setPointer($this->getDefaultPointer())) |
||
18 | ->setTitle($this->getDefaultTitle()) |
||
19 | ->setDetail($this->getNotFoundMessage()); |
||
20 | } |
||
40 |