Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php
2
 
3
namespace google\appengine\api\app_identity;
4
 
5
class AppIdentityService
6
{
7
    public static $scope;
8
    public static $accessToken = array(
9
        'access_token' => 'xyz',
10
        'expiration_time' => '2147483646',
11
    );
12
 
13
    public static function getAccessToken($scope)
14
    {
15
        self::$scope = $scope;
16
 
17
        return self::$accessToken;
18
    }
19
}