for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* SocialConnect project
* @author: Patsura Dmitry https://github.com/ovr <[email protected]>
*/
namespace SocialConnect\Auth\Provider\OpenID;
class AccessToken
{
* @var string
protected $identity;
public function __construct($identity)
$this->identity = $identity;
}
* @return string
public function getIdentity()
return $this->identity;