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 RequestTimeout extends HttpException
{
public function getHttpStatusCode(): int
return self::STATUS_REQUEST_TIMEOUT;
}