Skip to content

Commit

Permalink
Merge pull request #249 from rezvani/patch-1
Browse files Browse the repository at this point in the history
Update getAccountById Example
  • Loading branch information
raiym authored Jan 9, 2018
2 parents 3ed2014 + 483a84b commit 2b741dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/getAccountById.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
echo "Profile picture url: {$account->getProfilePicUrl()}\n";
echo "External link: {$account->getExternalUrl()}\n";
echo "Number of published posts: {$account->getMediaCount()}\n";
echo "Number of followers: {$account->getFollowsCount()}\n";
echo "Number of follows: {$account->getFollowedByCount()}\n";
echo "Number of followers: {$account->getFollowedByCount()}\n";
echo "Number of follows: {$account->getFollowsCount()}\n";
echo "Is private: {$account->isPrivate()}\n";
echo "Is verified: {$account->isVerified()}\n";

0 comments on commit 2b741dc

Please sign in to comment.