Lines Matching refs:decodedBody
55 protected $decodedBody = []; variable in Facebook\\FacebookResponse
152 return $this->decodedBody;
192 return isset($this->decodedBody['error']);
236 $this->decodedBody = json_decode($this->body, true);
238 if ($this->decodedBody === null) {
239 $this->decodedBody = [];
240 parse_str($this->body, $this->decodedBody);
241 } elseif (is_bool($this->decodedBody)) {
245 $this->decodedBody = ['success' => $this->decodedBody];
246 } elseif (is_numeric($this->decodedBody)) {
247 $this->decodedBody = ['id' => $this->decodedBody];
250 if (!is_array($this->decodedBody)) {
251 $this->decodedBody = [];