for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Steve Rhoades <[email protected]>
* @license http://opensource.org/licenses/MIT MIT
*/
namespace OpenIDConnectServer\Entities;
class ClaimSetEntity implements ClaimSetEntityInterface
{
protected $scope;
protected $claims;
public function __construct($scope, array $claims)
$this->scope = $scope;
$this->claims = $claims;
}
public function getScope()
return $this->scope;
public function getClaims()
return $this->claims;