turnaev /
monitor-bundle
| 1 | <?php |
||
| 2 | |||
| 3 | /** |
||
| 4 | * This file is part of the `tvi/monitor-bundle` project. |
||
| 5 | * |
||
| 6 | * (c) https://github.com/turnaev/monitor-bundle/graphs/contributors |
||
| 7 | * |
||
| 8 | * For the full copyright and license information, please view the LICENSE.md |
||
| 9 | * file that was distributed with this source code. |
||
| 10 | */ |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 11 | |||
| 12 | namespace Tvi\MonitorBundle\Exception; |
||
| 13 | |||
| 14 | /** |
||
|
0 ignored issues
–
show
|
|||
| 15 | * @author Vladimir Turnaev <[email protected]> |
||
| 16 | */ |
||
|
0 ignored issues
–
show
|
|||
| 17 | class HttpException extends \Symfony\Component\HttpKernel\Exception\HttpException |
||
| 18 | { |
||
| 19 | 4 | public function toArray() |
|
|
0 ignored issues
–
show
|
|||
| 20 | { |
||
| 21 | 4 | return ['Error' => ['code' => $this->getStatusCode(), 'message' => $this->getMessage()]]; |
|
| 22 | } |
||
| 23 | } |
||
| 24 |