* @license The MIT License */ class MethodNotAllowedHttpAPIException extends HttpException { /** * An HTTP status code. * * @var int */ protected $status = 405; /** * An error code. * * @var string|null */ protected $errorCode = 'MethodNotAllowedHttpException'; }