Skip to content

Instantly share code, notes, and snippets.

@pietromalerba
Forked from niraj-shah/fb_4.0.0_chain.php
Last active August 29, 2015 14:12
Show Gist options
  • Save pietromalerba/43628fb8532380cbf2b8 to your computer and use it in GitHub Desktop.
Save pietromalerba/43628fb8532380cbf2b8 to your computer and use it in GitHub Desktop.
<?php
// turn this:
$request = new FacebookRequest( $session, 'GET', '/me' );
$response = $request->execute();
$graphObject = $response->getGraphObject();
// into this:
$graphObject = (new FacebookRequest( $session, 'GET', '/me' ))->execute()->getGraphObject()->asArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment