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 06e42a6 commit 5c9f2c5Copy full SHA for 5c9f2c5
src/DatingVIP/API/Response.php
@@ -122,6 +122,18 @@ public function setTexts($data)
122
return $this->data[self::KEY_TEXTS] = $data;
123
}
124
125
+ /**
126
+ * Set status.
127
+ *
128
+ * @param status $status
129
130
+ * @return mixed
131
+ */
132
+ public function setStatus($status)
133
+ {
134
+ return $this->setMeta(__FUNCTION__, $status);
135
+ }
136
+
137
/**
138
* Set errors.
139
*
@@ -206,6 +218,18 @@ public function getTexts()
206
218
return $this->hasTexts() ? $this->data[self::KEY_TEXTS] : null;
207
219
208
220
221
222
+ * Get status.
223
224
+ * @param void
225
226
227
228
+ public function getStatus()
229
230
+ return $this->getMeta(__FUNCTION__);
231
232
209
233
210
234
* Get errors.
211
235
0 commit comments