Skip to content

Commit

Permalink
chore(dx): add docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
petski committed Oct 16, 2024
1 parent 0819eed commit 486ce2e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/Representation/Organization.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,27 @@
use Fschmtt\Keycloak\Type\Map;

/**
* @method string|null getId()
* @method string|null getName()
* @method bool|null getEnabled()
* @method string|null getDescription()
* @method Map|null getAttributes()
* @method OrganizationDomainCollection|null getDomains()
* @method UserCollection|null getMembers()
* @method IdentityProviderCollection|null getIdentityProviders()
* @method string|null getAlias()
* @method string|null getRedirectUrl()
* @method self withId(?string $id)
* @method self withName(?string $name)
* @method self withEnabled(?bool $enabled)
* @method self withDescription(?string $description)
* @method self withAttributes(?Map $attributes)
* @method self withDomains(?OrganizationDomainCollection $domains)
* @method self withMembers(?UserCollection $members)
* @method self withIdentityProviders(?IdentityProviderCollection $identityProviders)
* @method self withAlias(?string $alias)
* @method self withRedirectUrl(?string $redirectUrl)
*
* @codeCoverageIgnore
*/
class Organization extends Representation
Expand Down

0 comments on commit 486ce2e

Please sign in to comment.