Skip to content

Commit

Permalink
Add wst classes
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jan 23, 2024
1 parent 8f7ff11 commit ae93742
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 29 deletions.
10 changes: 5 additions & 5 deletions src/XML/fed/AbstractApplicationServiceType.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ abstract class AbstractApplicationServiceType extends AbstractWebServiceDescript
* @param string|null $cacheDuration Maximum time this document can be cached. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\Extensions|null $extensions An array of extensions. Defaults to an empty array.
* @param string|null $errorURL An URI where to redirect users for support. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\KeyDescriptor[] $keyDescriptors An array of KeyDescriptor elements.
* @param \SimpleSAML\SAML2\XML\md\KeyDescriptor[] $keyDescriptor An array of KeyDescriptor elements.
* Defaults to an empty array.
* @param \SimpleSAML\SAML2\XML\md\Organization|null $organization
* The organization running this entity. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\ContactPerson[] $contacts An array of contacts for this entity.
* @param \SimpleSAML\SAML2\XML\md\ContactPerson[] $contact An array of contacts for this entity.
* Defaults to an empty array.
* @param list<\SimpleSAML\XML\Attribute> $namespacedAttributes
* @param \SimpleSAML\WSSecurity\XML\fed\LogicalServiceNamesOffered|null $logicalServiceNamesOffered
Expand All @@ -54,9 +54,9 @@ final public function __construct(
?string $cacheDuration = null,
?Extensions $extensions = null,
?string $errorURL = null,
array $keyDescriptors = [],
array $keyDescriptor = [],
?Organization $organization = null,
array $contacts = [],
array $contact = [],
array $namespacedAttributes = [],
?LogicalServiceNamesOffered $logicalServiceNamesOffered = null,
?TokenTypesOffered $tokenTypesOffered = null,
Expand Down Expand Up @@ -105,7 +105,7 @@ final public function __construct(
$claimTypesOffered,
$claimTypesRequested,
$automaticPseudonyms,
$targetedScopes,
$targetScopes,
$serviceDisplayName,
$serviceDescription,
);
Expand Down
10 changes: 5 additions & 5 deletions src/XML/fed/AbstractAttributeServiceType.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ abstract class AbstractAttributeServiceType extends AbstractWebServiceDescriptor
* @param string|null $cacheDuration Maximum time this document can be cached. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\Extensions|null $extensions An array of extensions. Defaults to an empty array.
* @param string|null $errorURL An URI where to redirect users for support. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\KeyDescriptor[] $keyDescriptors An array of KeyDescriptor elements.
* @param \SimpleSAML\SAML2\XML\md\KeyDescriptor[] $keyDescriptor An array of KeyDescriptor elements.
* Defaults to an empty array.
* @param \SimpleSAML\SAML2\XML\md\Organization|null $organization
* The organization running this entity. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\ContactPerson[] $contacts An array of contacts for this entity.
* @param \SimpleSAML\SAML2\XML\md\ContactPerson[] $contact An array of contacts for this entity.
* Defaults to an empty array.
* @param list<\SimpleSAML\XML\Attribute> $namespacedAttributes
* @param \SimpleSAML\WSSecurity\XML\fed\LogicalServiceNamesOffered|null $logicalServiceNamesOffered
Expand All @@ -54,9 +54,9 @@ final public function __construct(
?string $cacheDuration = null,
?Extensions $extensions = null,
?string $errorURL = null,
array $keyDescriptors = [],
array $keyDescriptor = [],
?Organization $organization = null,
array $contacts = [],
array $contact = [],
array $namespacedAttributes = [],
?LogicalServiceNamesOffered $logicalServiceNamesOffered = null,
?TokenTypesOffered $tokenTypesOffered = null,
Expand Down Expand Up @@ -99,7 +99,7 @@ final public function __construct(
$claimTypesOffered,
$claimTypesRequested,
$automaticPseudonyms,
$targetedScopes,
$targetScopes,
$serviceDisplayName,
$serviceDescription,
);
Expand Down
10 changes: 5 additions & 5 deletions src/XML/fed/AbstractPseudonymServiceType.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ abstract class AbstractPseudonymServiceType extends AbstractWebServiceDescriptor
* @param string|null $cacheDuration Maximum time this document can be cached. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\Extensions|null $extensions An array of extensions. Defaults to an empty array.
* @param string|null $errorURL An URI where to redirect users for support. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\KeyDescriptor[] $keyDescriptors An array of KeyDescriptor elements.
* @param \SimpleSAML\SAML2\XML\md\KeyDescriptor[] $keyDescriptor An array of KeyDescriptor elements.
* Defaults to an empty array.
* @param \SimpleSAML\SAML2\XML\md\Organization|null $organization
* The organization running this entity. Defaults to null.
* @param \SimpleSAML\SAML2\XML\md\ContactPerson[] $contacts An array of contacts for this entity.
* @param \SimpleSAML\SAML2\XML\md\ContactPerson[] $contact An array of contacts for this entity.
* Defaults to an empty array.
* @param list<\SimpleSAML\XML\Attribute> $namespacedAttributes
* @param \SimpleSAML\WSSecurity\XML\fed\LogicalServiceNamesOffered|null $logicalServiceNamesOffered
Expand All @@ -54,9 +54,9 @@ final public function __construct(
?string $cacheDuration = null,
?Extensions $extensions = null,
?string $errorURL = null,
array $keyDescriptors = [],
array $keyDescriptor = [],
?Organization $organization = null,
array $contacts = [],
array $contact = [],
array $namespacedAttributes = [],
?LogicalServiceNamesOffered $logicalServiceNamesOffered = null,
?TokenTypesOffered $tokenTypesOffered = null,
Expand Down Expand Up @@ -99,7 +99,7 @@ final public function __construct(
$claimTypesOffered,
$claimTypesRequested,
$automaticPseudonyms,
$targetedScopes,
$targetScopes,
$serviceDisplayName,
$serviceDescription,
);
Expand Down
14 changes: 0 additions & 14 deletions src/XML/fed/PseudonymType.php

This file was deleted.

0 comments on commit ae93742

Please sign in to comment.