FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
StringEncrypt-WebAPI/src/ErrorCode.php at master · PELock/StringEncrypt-WebAPI · GitHub
PELock
/
StringEncrypt-WebAPI
Public
Notifications
You must be signed in to change notification settings
Fork
10
Star
31
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
StringEncrypt-WebAPI
/
src
/
ErrorCode.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (24 loc) · 653 Bytes
Breadcrumbs
StringEncrypt-WebAPI
/
src
/
ErrorCode.php
Copy path
File metadata and controls
39 lines (24 loc) · 653 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare
(strict_types=
1
);
namespace
StringEncrypt
;
/**
* API error codes returned in encrypt responses (`error` field).
*
* @see https://www.stringencrypt.com/api/
*/
final
class
ErrorCode
{
public
const
SUCCESS
=
0
;
public
const
EMPTY_LABEL
=
1
;
public
const
LENGTH_LABEL
=
2
;
public
const
EMPTY_STRING
=
3
;
public
const
EMPTY_BYTES
=
4
;
public
const
EMPTY_INPUT
=
5
;
public
const
LENGTH_STRING
=
6
;
public
const
INVALID_LANG
=
7
;
public
const
INVALID_LOCALE
=
8
;
public
const
CMD_MIN
=
9
;
public
const
CMD_MAX
=
10
;
public
const
LENGTH_BYTES
=
11
;
public
const
DEMO
=
100
;
}
Back
|
FazBrowse Home
|
New Git URL