for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace VM\ErrorHandler\Exceptions\Http;
use VM\ErrorHandler\Exceptions\HttpException;
class RequestHeaderFieldsTooLarge extends HttpException
{
public function getHttpStatusCode(): int
return self::STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE;
}