Home
last modified time | relevance | path

Searched refs:subclassName (Results 1 – 4 of 4) sorted by relevance

/plugin/authfacebook/lib/GraphNodes/
DGraphNodeFactory.php84 * @param string|null $subclassName The GraphNode sub class to cast to.
90 public function makeGraphNode($subclassName = null) argument
95 return $this->castAsGraphNodeOrGraphEdge($this->decodedBody, $subclassName);
185 * @param string|null $subclassName The GraphNode sub class to cast the list items to.
192 public function makeGraphEdge($subclassName = null, $auto_prefix = true) argument
197 if ($subclassName && $auto_prefix) {
198 $subclassName = static::BASE_GRAPH_OBJECT_PREFIX . $subclassName;
201 return $this->castAsGraphNodeOrGraphEdge($this->decodedBody, $subclassName);
250 * @param string|null $subclassName The subclass to cast this collection to.
256 public function safelyMakeGraphNode(array $data, $subclassName = null) argument
[all …]
DGraphObjectFactory.php51 * @param string|null $subclassName The GraphNode sub class to cast to.
57 public function makeGraphObject($subclassName = null) argument
59 return $this->makeGraphNode($subclassName);
77 * @param string|null $subclassName The GraphNode sub class to cast the list items to.
84 public function makeGraphList($subclassName = null, $auto_prefix = true) argument
86 return $this->makeGraphEdge($subclassName, $auto_prefix);
DGraphEdge.php55 protected $subclassName; variable in Facebook\\GraphNodes\\GraphEdge
64 * @param string|null $subclassName The subclass of the child GraphNode's.
66 …$request, array $data = [], array $metaData = [], $parentEdgeEndpoint = null, $subclassName = null) argument
71 $this->subclassName = $subclassName;
93 return $this->subclassName;
249 $this->subclassName
/plugin/authfacebook/lib/
DFacebookResponse.php262 * @param string|null $subclassName The GraphNode subclass to cast to.
271 public function getGraphObject($subclassName = null) argument
273 return $this->getGraphNode($subclassName);
279 * @param string|null $subclassName The GraphNode subclass to cast to.
285 public function getGraphNode($subclassName = null) argument
289 return $factory->makeGraphNode($subclassName);
379 * @param string|null $subclassName The GraphNode subclass to cast list items to.
389 public function getGraphList($subclassName = null, $auto_prefix = true) argument
391 return $this->getGraphEdge($subclassName, $auto_prefix);
397 * @param string|null $subclassName The GraphNode subclass to cast list items to.
[all …]