We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e40c49 commit cb46fc2Copy full SHA for cb46fc2
src/WebApp/Auth/AuthError.php
@@ -11,6 +11,7 @@ class AuthError {
11
12
public $errorCode;
13
public $errorMessage;
14
+ public $data;
15
16
public function __construct($errorCode, $errorMessage, $data = NULL) {
17
$this->errorCode = $errorCode;
@@ -23,7 +24,7 @@ public function getMessage() {
23
24
}
25
26
public function getData() {
- return $data;
27
+ return $this->data;
28
29
30
0 commit comments