/var/www/hkosl.com/littleark/webadmin/libraies/google/auth/tests/mocks/AppIdentityService.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace google\appengine\api\app_identity;

class 
AppIdentityService
{
    public static 
$scope;
    public static 
$accessToken = array(
        
'access_token' => 'xyz',
        
'expiration_time' => '2147483646',
    );

    public static function 
getAccessToken($scope)
    {
        
self::$scope $scope;

        return 
self::$accessToken;
    }
}