Home
last modified time | relevance | path

Searched refs:decodedBody (Results 1 – 2 of 2) sorted by relevance

/plugin/authfacebook/lib/
H A DFacebookResponse.php55 protected $decodedBody = []; variable in Facebook\\FacebookResponse
152 return $this->decodedBody;
192 return isset($this->decodedBody['error']);
238 if ($this->decodedBody === null) {
239 $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)) {
[all …]
/plugin/authfacebook/lib/GraphNodes/
H A DGraphNodeFactory.php68 protected $decodedBody; variable in Facebook\\GraphNodes\\GraphNodeFactory
78 $this->decodedBody = $response->getDecodedBody();
95 return $this->castAsGraphNodeOrGraphEdge($this->decodedBody, $subclassName);
201 return $this->castAsGraphNodeOrGraphEdge($this->decodedBody, $subclassName);
211 if (!is_array($this->decodedBody)) {
223 …if (isset($this->decodedBody['data']) && static::isCastableAsGraphEdge($this->decodedBody['data'])…
238 …if (!(isset($this->decodedBody['data']) && static::isCastableAsGraphEdge($this->decodedBody['data'…