11 lines
139 B
PHP
11 lines
139 B
PHP
<?php
|
|
|
|
namespace Leadin\auth;
|
|
|
|
/**
|
|
* Error codes for OAuthCrypto
|
|
*/
|
|
class OAuthCryptoError {
|
|
const DECRYPT_FAILED = 'DECRYPT_FAILED';
|
|
}
|