| 1 | <?php |
||
| 21 | class ResourceServer |
||
| 22 | { |
||
| 23 | /** @var string */ |
||
| 24 | private $resourceServerId; |
||
| 25 | |||
| 26 | /** @var string */ |
||
| 27 | private $scope; |
||
| 28 | |||
| 29 | /** @var string */ |
||
| 30 | private $secret; |
||
| 31 | |||
| 32 | public function __construct($resourceServerId, $scope, $secret) |
||
| 38 | |||
| 39 | public function getResourceServerId() |
||
| 43 | |||
| 44 | public function getScope() |
||
| 48 | |||
| 49 | public function getSecret() |
||
| 53 | } |
||
| 54 |