for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Chubbyphp\ApiHttp\ApiProblem\ServerError;
use Chubbyphp\ApiHttp\ApiProblem\AbstractApiProblem;
final class InternalServerError extends AbstractApiProblem
{
/**
* @return int
*/
public function getStatus(): int
return 500;
}
* @return string
public function getType(): string
return 'https://tools.ietf.org/html/rfc2616#section-10.5.1';