Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
16 | class InternalServerError extends AbstractControlledError |
||
17 | { |
||
18 | protected $code = 500; |
||
19 | |||
20 | protected $message = 'Internal Server Error'; |
||
21 | |||
22 | protected $description = 'Something is broken. This is usually a temporary error, for example in a high load situation or if an endpoint is temporarily having issues.'; |
||
23 | |||
24 | /** |
||
25 | * {@inheritDoc} |
||
26 | */ |
||
27 | public function getCategory() |
||
32 |