Lines Matching refs:this

77         $this->request = $request;
78 $this->body = $body;
79 $this->httpStatusCode = $httpStatusCode;
80 $this->headers = $headers;
82 $this->decodeBody();
92 return $this->request;
102 return $this->request->getApp();
112 return $this->request->getAccessToken();
122 return $this->httpStatusCode;
132 return $this->headers;
142 return $this->body;
152 return $this->decodedBody;
162 return $this->request->getAppSecretProof();
172 return isset($this->headers['ETag']) ? $this->headers['ETag'] : null;
182 …return isset($this->headers['Facebook-API-Version']) ? $this->headers['Facebook-API-Version'] : nu…
192 return isset($this->decodedBody['error']);
202 throw $this->thrownException;
210 $this->thrownException = FacebookResponseException::create($this);
220 return $this->thrownException;
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 = [];
254 if ($this->isError()) {
255 $this->makeException();
273 return $this->getGraphNode($subclassName);
287 $factory = new GraphNodeFactory($this);
301 $factory = new GraphNodeFactory($this);
315 $factory = new GraphNodeFactory($this);
329 $factory = new GraphNodeFactory($this);
343 $factory = new GraphNodeFactory($this);
357 $factory = new GraphNodeFactory($this);
371 $factory = new GraphNodeFactory($this);
391 return $this->getGraphEdge($subclassName, $auto_prefix);
406 $factory = new GraphNodeFactory($this);