Skip to content

Commit

Permalink
Bump xml-common
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed May 19, 2023
1 parent 1a8637e commit b271e80
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/php.yml
Expand Up @@ -80,7 +80,6 @@ jobs:
run: phpcs

- name: Psalm
continue-on-error: true
run: |
psalm -c psalm.xml \
--show-info=true \
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -12,7 +12,7 @@
"php": "^8.0",
"ext-dom": "*",

"simplesamlphp/xml-common": "^1.8.0",
"simplesamlphp/xml-common": "^1.9.0",
"simplesamlphp/assert": "^1.0.4"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/XML/cas/Attributes.php
Expand Up @@ -25,7 +25,7 @@ final class Attributes extends AbstractCasElement
public const LOCALNAME = 'attributes';

/** The namespace-attribute for the xs:any element */
public const NAMESPACE = C::XS_ANY_NS_ANY;
public const XS_ANY_ELT_NAMESPACE = C::XS_ANY_NS_ANY;


/**
Expand Down
1 change: 0 additions & 1 deletion src/XML/cas/AuthenticationFailure.php
Expand Up @@ -83,7 +83,6 @@ public static function fromXML(DOMElement $xml): static
MissingAttributeException::class,
);

/** @psalm-var string $code */
$code = self::getAttribute($xml, 'code');
return new static(trim($xml->textContent), $code);
}
Expand Down
1 change: 0 additions & 1 deletion src/XML/cas/ProxyFailure.php
Expand Up @@ -82,7 +82,6 @@ public static function fromXML(DOMElement $xml): static
MissingAttributeException::class,
);

/** @psalm-var string $code */
$code = self::getAttribute($xml, 'code');
return new static(trim($xml->textContent), $code);
}
Expand Down

0 comments on commit b271e80

Please sign in to comment.