Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 7ad7e44

Browse files
Merge pull request #35 from CyberfusionIO/feature/missing-status-codes
Add missing status codes
2 parents e359911 + 0866a4e commit 7ad7e44

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Please note this changelog affects
66
this package and not the Oxxa API.
77

8+
## [2.12.0]
9+
10+
### Added
11+
12+
- Add missing status codes.
13+
814
## [2.11.0]
915

1016
### Added

src/Enum/StatusCode.php

+4
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ class StatusCode
100100

101101
public const STATUS_DOMAIN_TRANSFER_DOMAIN_IN_QUARANTINE = 'XMLERR 537';
102102

103+
public const STATUS_DOMAIN_TRANSFER_NOT_EXISTS = 'XMLERR243';
104+
105+
public const STATUS_DOMAIN_UNKNOWN = 'XMLERR 20';
106+
103107
public const STATUS_INSUFFICIENT_FUNDS = 'XMLERR 87';
104108

105109
public const STATUS_HELPDESK_NEEDED = 'XMLERR 184';

src/Oxxa.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Oxxa implements OxxaClient
2929

3030
private const TIMEOUT = 180;
3131

32-
private const VERSION = '2.11.0';
32+
private const VERSION = '2.12.0';
3333

3434
private const USER_AGENT = 'oxxa-api-client/'.self::VERSION;
3535

0 commit comments

Comments
 (0)