Skip to content

Commit 0147728

Browse files
committed
fix: protected to private properties of an error
1 parent f9b6c17 commit 0147728

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/EasyPost/Exception/Api/ApiException.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
*/
1212
class ApiException extends EasyPostException
1313
{
14-
protected $httpBody;
15-
protected $httpStatus;
16-
protected $jsonBody;
17-
protected $message;
1814
public $code;
1915
public $errors;
16+
protected $message;
17+
private $httpBody;
18+
private $httpStatus;
19+
private $jsonBody;
2020

2121
/**
2222
* ApiException constructor.

0 commit comments

Comments
 (0)