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\ClientError;
use Chubbyphp\ApiHttp\ApiProblem\ClientError\Gone;
use Chubbyphp\ApiHttp\Serialization\ApiProblem\AbstractApiProblemMapping;
final class GoneMapping extends AbstractApiProblemMapping
{
public function getClass(): string
return Gone::class;
}