1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33:
<?php
namespace League\OAuth2\Client\Test\Provider;
use League\OAuth2\Client\Token\AccessToken;
use League\OAuth2\Client\Provider\GenericProvider;
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;
use Psr\Http\Message\ResponseInterface;
class Generic extends GenericProvider
{
public function __construct($options = [], array $collaborators = [])
{
$options += [
'clientId' => 'mock_client_id',
'clientSecret' => 'mock_secret',
'redirectUri' => 'none',
];
parent::__construct($options);
}
protected function fetchResourceOwnerDetails(AccessToken $token)
{
return [
'mock_response_uid' => 1,
'username' => 'testmock',
'email' => 'mock@example.com',
];
}
}