Skip to content

Commit 4f27975

Browse files
authored
Merge pull request #92 from jaapio/fix/resource-server
Fix typo in resource server representation
2 parents 1e2203b + 6d35fcc commit 4f27975

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Representation/ResourceServer.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Fschmtt\Keycloak\Enum\PolicyEnforcementMode;
1212

1313
/**
14-
* @method bool|null getAllowRemoveResourceManagement()
14+
* @method bool|null getAllowRemoteResourceManagement()
1515
* @method string|null getClientId()
1616
* @method DecisionStrategy|null getDecisionStrategy()
1717
* @method string|null getId()
@@ -20,7 +20,7 @@
2020
* @method PolicyEnforcementMode|null getPolicyEnforcementMode()
2121
* @method ResourceCollection|null getResources()
2222
* @method ScopeCollection|null getScopes()
23-
* @method self withAllowRemoveResourceManagement(?bool $allowRemoveResourceManagement)
23+
* @method self withAllowRemoteResourceManagement(?bool $allowRemoveResourceManagement)
2424
* @method self withClientId(?string $clientId)
2525
* @method self withDecisionStrategy(?DecisionStrategy $decisionStrategy)
2626
* @method self withId(?string $id)
@@ -35,7 +35,7 @@
3535
class ResourceServer extends Representation
3636
{
3737
public function __construct(
38-
protected ?bool $allowRemoveResourceManagement = null,
38+
protected ?bool $allowRemoteResourceManagement = null,
3939
protected ?string $clientId = null,
4040
protected ?DecisionStrategy $decisionStrategy = null,
4141
protected ?string $id = null,

0 commit comments

Comments
 (0)