Skip to content

Commit d0c73db

Browse files
committed
Fix namespaces
1 parent f915d31 commit d0c73db

6 files changed

Lines changed: 14 additions & 14 deletions

src/SAML11/Type/DecisionTypeValue.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class DecisionTypeValue extends StringValue
2323
/**
2424
* Validate the value.
2525
*
26-
* @param string $value The value
26+
* @param string $value The value
2727
* @throws \Exception on failure
2828
* @return void
2929
*/
@@ -38,7 +38,7 @@ protected function validateValue(string $value): void
3838

3939

4040
/**
41-
* @param \SimpleSAML\XSD\XML\xsd\DecisionTypeEnum $value
41+
* @param \SimpleSAML\SAML11\XML\saml\DecisionTypeEnum $value
4242
* @return static
4343
*/
4444
public static function fromEnum(DecisionTypeEnum $value): static
@@ -48,7 +48,7 @@ public static function fromEnum(DecisionTypeEnum $value): static
4848

4949

5050
/**
51-
* @return \SimpleSAML\XSD\XML\xsd\DecisionTypeEnum $value
51+
* @return \SimpleSAML\SAML11\XML\saml\DecisionTypeEnum $value
5252
*/
5353
public function toEnum(): DecisionTypeEnum
5454
{

src/SAML11/XML/saml/AbstractAuthorityBindingType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class AbstractAuthorityBindingType extends AbstractSamlElement
2222
/**
2323
* Initialize a saml:AuthorityBindingType from scratch
2424
*
25-
* @param \SimpleSAML\XML\Type\QNameValue $AuthorityKind
25+
* @param \SimpleSAML\XMLSchema\Type\QNameValue $AuthorityKind
2626
* @param \SimpleSAML\SAML11\Type\SAMLAnyURIValue $Location
2727
* @param \SimpleSAML\SAML11\Type\SAMLAnyURIValue $Binding
2828
*/
@@ -37,7 +37,7 @@ final public function __construct(
3737
/**
3838
* Collect the value of the AuthorityKind-property
3939
*
40-
* @return \SimpleSAML\XML\Type\QNameValue
40+
* @return \SimpleSAML\XMLSchema\Type\QNameValue
4141
*/
4242
public function getAuthorityKind(): QNameValue
4343
{

src/SAML11/XML/saml/AbstractAuthorizationDecisionStatementType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ final public function __construct(
5151
/**
5252
* Collect the value of the resource-property
5353
*
54-
* @return \SimpleSAML\SAML11\Type\AnyURIValue
54+
* @return \SimpleSAML\XMLSchema\Type\AnyURIValue
5555
*/
5656
public function getResource(): AnyURIValue
5757
{

src/SAML11/XML/saml/AbstractCondition.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ abstract class AbstractCondition extends AbstractConditionType implements
3737
/**
3838
* Initialize a custom saml:Condition element.
3939
*
40-
* @param \SimpleSAML\XML\Type\QNameValue $type
40+
* @param \SimpleSAML\XMLSchema\Type\QNameValue $type
4141
*/
4242
protected function __construct(
4343
protected QNameValue $type,
@@ -46,7 +46,7 @@ protected function __construct(
4646

4747

4848
/**
49-
* @return \SimpleSAML\XML\Type\QNameValue
49+
* @return \SimpleSAML\XMLSchema\Type\QNameValue
5050
*/
5151
public function getXsiType(): QNameValue
5252
{

src/SAML11/XML/saml/AbstractStatement.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ abstract class AbstractStatement extends AbstractStatementType implements
3737
/**
3838
* Initialize a custom saml:Statement element.
3939
*
40-
* @param \SimpleSAML\XML\Type\QNameValue $type
40+
* @param \SimpleSAML\XMLSchema\Type\QNameValue $type
4141
*/
4242
protected function __construct(
4343
protected QNameValue $type,
@@ -46,7 +46,7 @@ protected function __construct(
4646

4747

4848
/**
49-
* @return \SimpleSAML\XML\Type\QNameValue
49+
* @return \SimpleSAML\XMLSchema\Type\QNameValue
5050
*/
5151
public function getXsiType(): QNameValue
5252
{

src/SAML11/XML/samlp/AbstractMessage.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ abstract class AbstractMessage extends AbstractSamlpElement implements SignableE
4141
/**
4242
* Initialize a message.
4343
*
44-
* @param \SimpleSAML\XML\Type\NonNegativeIntegerValue $majorVersion
45-
* @param \SimpleSAML\XML\Type\NonNegativeIntegerValue $minorVersion
44+
* @param \SimpleSAML\XMLSchema\Type\NonNegativeIntegerValue $majorVersion
45+
* @param \SimpleSAML\XMLSchema\Type\NonNegativeIntegerValue $minorVersion
4646
* @param \SimpleSAML\SAML11\Type\SAMLDateTimeValue $issueInstant
4747
*
4848
* @throws \Exception
@@ -58,7 +58,7 @@ protected function __construct(
5858
/**
5959
* Retrieve the major version of this message.
6060
*
61-
* @return \SimpleSAML\XML\Type\NonNegativeIntegerValue The major version of this message
61+
* @return \SimpleSAML\XMLSchema\Type\NonNegativeIntegerValue The major version of this message
6262
*/
6363
public function getMajorVersion(): NonNegativeIntegerValue
6464
{
@@ -69,7 +69,7 @@ public function getMajorVersion(): NonNegativeIntegerValue
6969
/**
7070
* Retrieve the minor version of this message.
7171
*
72-
* @return \SimpleSAML\XML\Type\NonNegativeIntegerValue The minor version of this message
72+
* @return \SimpleSAML\XMLSchema\Type\NonNegativeIntegerValue The minor version of this message
7373
*/
7474
public function getMinorVersion(): NonNegativeIntegerValue
7575
{

0 commit comments

Comments
 (0)