for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Chubbyphp\ApiHttp\Serialization\ApiProblem\ServerError;
use Chubbyphp\ApiHttp\ApiProblem\ServerError\ServiceUnavailable;
use Chubbyphp\ApiHttp\Serialization\ApiProblem\AbstractApiProblemMapping;
final class ServiceUnavailableMapping extends AbstractApiProblemMapping
{
public function getClass(): string
return ServiceUnavailable::class;
}