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

Commit aba373c

Browse files
Merge pull request #32 from CyberfusionIO/feature/add-helpdesk-code
Add helpdesk status code
2 parents 0b21705 + dad3f52 commit aba373c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-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.9.0]
9+
10+
### Added
11+
12+
- Add error code for when the Oxxa helpdesk is needed.
13+
814
## [2.8.1]
915

1016
### Fixed

src/Enum/StatusCode.php

+2
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,6 @@ class StatusCode
9797
public const STATUS_DOMAIN_TRANSFER_UNABLE_LOCK = 'XMLERR 66';
9898

9999
public const STATUS_INSUFFICIENT_FUNDS = 'XMLERR 87';
100+
101+
public const STATUS_HELPDESK_NEEDED = 'XMLERR 184';
100102
}

src/Oxxa.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Oxxa implements OxxaClient
1515
{
1616
private const TIMEOUT = 180;
1717

18-
private const VERSION = '2.8.1';
18+
private const VERSION = '2.9.0';
1919

2020
private const USER_AGENT = 'oxxa-api-client/'.self::VERSION;
2121

0 commit comments

Comments
 (0)