1
0
mirror of synced 2024-11-24 05:26:03 +03:00

Merge pull request #9 from Neur0toxine/remove-incorrect-status

Remove incorrect status
This commit is contained in:
Alex Lushpai 2021-04-14 17:57:52 +03:00 committed by GitHub
commit bd81c1d8fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,9 +55,6 @@ class OrderStatuses
// Order is closed and now stored in the archive.
public const ARCHIVE = 'ARCHIVE';
// Undocumented.
public const FROZEN_STATUS = 'FROZEN_STATUS';
// List of all order statuses.
public const STATUSES_LIST = [
self::PLACE_ORDER_SUCCESS,
@ -72,7 +69,6 @@ class OrderStatuses
self::RISK_CONTROL,
self::RISK_CONTROL_HOLD,
self::FINISH,
self::ARCHIVE,
self::FROZEN_STATUS
self::ARCHIVE
];
}