Initial commit
This commit is contained in:
19
vendor/google/auth/tests/mocks/AppIdentityService.php
vendored
Normal file
19
vendor/google/auth/tests/mocks/AppIdentityService.php
vendored
Normal file
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user