Created
November 24, 2011 15:47
-
-
Save igorw/1391643 to your computer and use it in GitHub Desktop.
Use Facebook PHP SDK in CLI.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once __DIR__.'/../vendor/facebook-php-sdk/src/base_facebook.php'; | |
class CliFacebook extends BaseFacebook { | |
protected function setPersistentData($key, $value) {} | |
protected function getPersistentData($key, $default = false) { | |
return $default; | |
} | |
protected function clearPersistentData($key) {} | |
protected function clearAllPersistentData() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment