diff options
author | emkael <emkael@tlen.pl> | 2019-01-01 17:11:00 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-01-01 17:11:00 +0100 |
commit | 36f25b4e845b9a53dd6f11402de5bfa61078fdf9 (patch) | |
tree | 9cf8ee811f2e6c6fb5f90e6001d45d347f969b01 /lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php | |
parent | eab8a101e7a3fcbb41e01a574985e06c5a3775de (diff) |
Facebook API updated
Diffstat (limited to 'lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php')
-rw-r--r-- | lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php b/lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php index 3dfb0e0..503b96b 100644 --- a/lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php +++ b/lib/facebook-graph-sdk/src/Facebook/GraphNodes/GraphPage.php @@ -144,4 +144,14 @@ class GraphPage extends GraphNode { return $this->getField('perms'); } + + /** + * Returns the `fan_count` (Number of people who likes to page) as int if present. + * + * @return int|null + */ + public function getFanCount() + { + return $this->getField('fan_count'); + } } |