2016-12-18 02:20:53 +03:00
|
|
|
<?php
|
|
|
|
namespace api\modules\internal\helpers;
|
|
|
|
|
|
|
|
final class Error {
|
|
|
|
|
|
|
|
public const ACCOUNT_ALREADY_BANNED = 'error.account_already_banned';
|
2017-01-05 00:57:04 +03:00
|
|
|
public const ACCOUNT_NOT_BANNED = 'error.account_not_banned';
|
2016-12-18 02:20:53 +03:00
|
|
|
|
|
|
|
}
|