mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
13 lines
356 B
PHP
13 lines
356 B
PHP
<?php
|
|
namespace api\modules\internal\helpers;
|
|
|
|
final class Error {
|
|
|
|
public const ACCOUNT_ALREADY_BANNED = 'error.account_already_banned';
|
|
public const ACCOUNT_NOT_BANNED = 'error.account_not_banned';
|
|
|
|
public const ACCOUNT_ALREADY_DELETED = 'error.account_already_deleted';
|
|
public const ACCOUNT_NOT_DELETED = 'error.account_not_deleted';
|
|
|
|
}
|