This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/oauth/classes/Kohana/OAuth2/API/Profile/Facebook.php
2013-10-10 13:56:13 +11:00

18 lines
390 B
PHP

<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* OAuth Profile for Facebook
*
* @package OAuth
* @category Classes
* @author Deon George
* @copyright (c) 2009-2013 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Kohana_OAuth2_API_Profile_Facebook extends OAuth_API {
public function id() {
return $this->profile->id;
}
}
?>