Skip to content

Commit 4deff11

Browse files
committed
Changed CONST to private.
1 parent f795980 commit 4deff11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/WebService.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ class WebService
1212
*
1313
* @var int
1414
*/
15-
public const EXCEPTION_NO_CURL = 10001;
15+
private const EXCEPTION_NO_CURL = 10001;
1616

1717
/**
1818
* Invalid API key format.
1919
*
2020
* @var int
2121
*/
22-
public const EXCEPTION_INVALID_API_KEY = 10002;
22+
private const EXCEPTION_INVALID_API_KEY = 10002;
2323

2424
/**
2525
* Web service error.
2626
*
2727
* @var int
2828
*/
29-
public const EXCEPTION_WEB_SERVICE_ERROR = 10003;
29+
private const EXCEPTION_WEB_SERVICE_ERROR = 10003;
3030

3131
/**
3232
* Constructor.

0 commit comments

Comments
 (0)