10 lines
171 B
PHP
10 lines
171 B
PHP
|
|
<?php
|
||
|
|
namespace SPVoipIntegration;
|
||
|
|
|
||
|
|
class ProvidersErrors {
|
||
|
|
|
||
|
|
const VALIDATE_REQUEST_ERROR = 1;
|
||
|
|
const WRONG_PROVIDER_DATA = 2;
|
||
|
|
const WRONG_SIGNATURE = 3;
|
||
|
|
}
|