diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index dfc54843..24013e09 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -47,9 +47,8 @@ jobs: with: # Should be the higest supported version, so we can use the newest tools php-version: '8.3' - tools: composer, composer-require-checker, composer-unused, phpcs, psalm - # optional performance gain for psalm: opcache - extensions: ctype, date, dom, filter, opcache, pcre, soap, spl, xml + tools: composer, composer-require-checker, composer-unused, phpcs, phpstan + extensions: ctype, date, dom, filter, pcre, soap, spl, xml coverage: none - name: Setup problem matchers for PHP @@ -82,26 +81,13 @@ jobs: - name: PHP Code Sniffer run: phpcs - - name: Psalm - run: | - psalm -c psalm.xml \ - --show-info=true \ - --shepherd \ - --php-version=${{ steps.setup-php.outputs.php-version }} - - - name: Psalm (testsuite) + - name: PHPStan run: | - psalm -c psalm-dev.xml \ - --show-info=true \ - --shepherd \ - --php-version=${{ steps.setup-php.outputs.php-version }} + phpstan analyze -c phpstan.neon - - name: Psalter + - name: PHPStan (testsuite) run: | - psalm --alter \ - --issues=UnnecessaryVarAnnotation \ - --dry-run \ - --php-version=${{ steps.setup-php.outputs.php-version }} + phpstan analyze -c phpstan-dev.neon security: name: Security checks diff --git a/README.md b/README.md index 954166bb..b8e7a164 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # WS-Security PHP library -![CI](https://github.com/tvdijen/ws-security/workflows/CI/badge.svg?branch=master) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/tvdijen/ws-security/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/tvdijen/ws-security/?branch=master) -[![Coverage Status](https://codecov.io/gh/tvdijen/ws-security/branch/master/graph/badge.svg)](https://codecov.io/gh/tvdijen/ws-security) -[![Type coverage](https://shepherd.dev/github/tvdijen/ws-security/coverage.svg)](https://shepherd.dev/github/tvdijen/ws-security) -[![Psalm Level](https://shepherd.dev/github/tvdijen/ws-security/level.svg)](https://shepherd.dev/github/tvdijen/ws-security) +![CI](https://github.com/simplesamlphp/ws-security/workflows/CI/badge.svg?branch=master) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/simplesamlphp/ws-security/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/simplesamlphp/ws-security/?branch=master) +[![Coverage Status](https://codecov.io/gh/simplesamlphp/ws-security/branch/master/graph/badge.svg)](https://codecov.io/gh/simplesamlphp/ws-security) +[![PHPStan Enabled](https://img.shields.io/badge/PHPStan-enabled-brightgreen.svg?style=flat)](https://github.com/simplesamlphp/ws-security) A PHP library for WS-Security related functionality. @@ -23,5 +22,5 @@ to connect your application using WS-Security, you should probably use run the following command in your project: ```bash -composer require tvdijen/ws-security:dev-master +composer require simplesamlphp/ws-security:dev-master ``` diff --git a/composer.json b/composer.json index e9999ccd..b59fc488 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "tvdijen/ws-security", + "name": "simplesamlphp/ws-security", "description": "WS-Security PHP library", "license": "LGPL-2.1-or-later", "authors": [ diff --git a/phpstan-dev.neon b/phpstan-dev.neon new file mode 100644 index 00000000..4d29b8b5 --- /dev/null +++ b/phpstan-dev.neon @@ -0,0 +1,4 @@ +parameters: + level: 9 + paths: + - tests diff --git a/phpstan.neon b/phpstan.neon new file mode 100644 index 00000000..db37782f --- /dev/null +++ b/phpstan.neon @@ -0,0 +1,4 @@ +parameters: + level: 6 + paths: + - src diff --git a/psalm-dev.xml b/psalm-dev.xml deleted file mode 100644 index 6116331c..00000000 --- a/psalm-dev.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/psalm.xml b/psalm.xml deleted file mode 100644 index cd6d6cac..00000000 --- a/psalm.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Constants.php b/src/Constants.php index aba799ba..8fb11fba 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -7,7 +7,7 @@ /** * Class holding constants relevant for WS-Security. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ class Constants extends \SimpleSAML\SAML2\Constants diff --git a/src/Exception/ProtocolViolationException.php b/src/Exception/ProtocolViolationException.php index 010123e9..83205335 100644 --- a/src/Exception/ProtocolViolationException.php +++ b/src/Exception/ProtocolViolationException.php @@ -7,7 +7,7 @@ /** * This exception may be raised when a violation of the WS specification is detected * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ class ProtocolViolationException extends RuntimeException { diff --git a/src/Utils/XPath.php b/src/Utils/XPath.php index cba95d16..53ca578e 100644 --- a/src/Utils/XPath.php +++ b/src/Utils/XPath.php @@ -11,7 +11,7 @@ /** * Compilation of utilities for XPath. * - * @package tvdijen/wssecurity + * @package simplesamlphp/wssecurity */ class XPath extends \SimpleSAML\XMLSecurity\Utils\XPath { diff --git a/src/XML/ReferenceIdentifierTrait.php b/src/XML/ReferenceIdentifierTrait.php index 6d97daae..65b3d2db 100644 --- a/src/XML/ReferenceIdentifierTrait.php +++ b/src/XML/ReferenceIdentifierTrait.php @@ -8,7 +8,7 @@ use SimpleSAML\XML\Exception\SchemaViolationException; /** - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait ReferenceIdentifierTrait { diff --git a/src/XML/auth/AbstractAuthElement.php b/src/XML/auth/AbstractAuthElement.php index adf50bc2..6e1b90ec 100644 --- a/src/XML/auth/AbstractAuthElement.php +++ b/src/XML/auth/AbstractAuthElement.php @@ -11,7 +11,7 @@ * Abstract class to be implemented by all the classes in this namespace * * @see http://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.pdf - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAuthElement extends AbstractElement { diff --git a/src/XML/auth/AbstractClaimType.php b/src/XML/auth/AbstractClaimType.php index a6358d29..31c42696 100644 --- a/src/XML/auth/AbstractClaimType.php +++ b/src/XML/auth/AbstractClaimType.php @@ -27,7 +27,7 @@ /** * Class defining the ClaimType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClaimType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractConstrainedManyValueType.php b/src/XML/auth/AbstractConstrainedManyValueType.php index f7c427b8..d53146f7 100644 --- a/src/XML/auth/AbstractConstrainedManyValueType.php +++ b/src/XML/auth/AbstractConstrainedManyValueType.php @@ -11,7 +11,7 @@ /** * Class representing WS-authorization ConstrainedManyValueType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractConstrainedManyValueType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractConstrainedSingleValueType.php b/src/XML/auth/AbstractConstrainedSingleValueType.php index 8b0e2fa6..e0339361 100644 --- a/src/XML/auth/AbstractConstrainedSingleValueType.php +++ b/src/XML/auth/AbstractConstrainedSingleValueType.php @@ -14,7 +14,7 @@ /** * Class representing WS-authorization ConstrainedSingleValueType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractConstrainedSingleValueType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractConstrainedValueType.php b/src/XML/auth/AbstractConstrainedValueType.php index 5777360a..f9551c5f 100644 --- a/src/XML/auth/AbstractConstrainedValueType.php +++ b/src/XML/auth/AbstractConstrainedValueType.php @@ -20,7 +20,7 @@ /** * Class defining the ConstrainedValueType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractConstrainedValueType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractDescriptionType.php b/src/XML/auth/AbstractDescriptionType.php index 356eef5c..1f765e3c 100644 --- a/src/XML/auth/AbstractDescriptionType.php +++ b/src/XML/auth/AbstractDescriptionType.php @@ -14,7 +14,7 @@ /** * Class representing WS-authorization DescriptionType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractDescriptionType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractDisplayNameType.php b/src/XML/auth/AbstractDisplayNameType.php index 0ecf8334..3ac8c41b 100644 --- a/src/XML/auth/AbstractDisplayNameType.php +++ b/src/XML/auth/AbstractDisplayNameType.php @@ -14,7 +14,7 @@ /** * Class representing WS-authorization DisplayNameType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractDisplayNameType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractDisplayValueType.php b/src/XML/auth/AbstractDisplayValueType.php index 94ef38ac..15302587 100644 --- a/src/XML/auth/AbstractDisplayValueType.php +++ b/src/XML/auth/AbstractDisplayValueType.php @@ -14,7 +14,7 @@ /** * Class representing WS-authorization DisplayValueType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractDisplayValueType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractEncryptedValueType.php b/src/XML/auth/AbstractEncryptedValueType.php index 692ba762..994dd25c 100644 --- a/src/XML/auth/AbstractEncryptedValueType.php +++ b/src/XML/auth/AbstractEncryptedValueType.php @@ -17,7 +17,7 @@ /** * Class representing WS-authorization EncryptedValueType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEncryptedValueType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractStructuredValueType.php b/src/XML/auth/AbstractStructuredValueType.php index 8ddfe358..f6b72355 100644 --- a/src/XML/auth/AbstractStructuredValueType.php +++ b/src/XML/auth/AbstractStructuredValueType.php @@ -15,7 +15,7 @@ /** * Class defining the StructuredValueType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractStructuredValueType extends AbstractAuthElement { diff --git a/src/XML/auth/AbstractValueInRangeType.php b/src/XML/auth/AbstractValueInRangeType.php index ccf79473..fb1b2706 100644 --- a/src/XML/auth/AbstractValueInRangeType.php +++ b/src/XML/auth/AbstractValueInRangeType.php @@ -13,7 +13,7 @@ /** * Class defining the ValueInRangeType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractValueInRangeType extends AbstractAuthElement { diff --git a/src/XML/auth/ClaimType.php b/src/XML/auth/ClaimType.php index 444c169f..cf6f54fc 100644 --- a/src/XML/auth/ClaimType.php +++ b/src/XML/auth/ClaimType.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ClaimType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimType extends AbstractClaimType { diff --git a/src/XML/auth/ConstrainedValue.php b/src/XML/auth/ConstrainedValue.php index fce2feed..d7ef5df3 100644 --- a/src/XML/auth/ConstrainedValue.php +++ b/src/XML/auth/ConstrainedValue.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ConstrainedValue. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ConstrainedValue extends AbstractConstrainedValueType { diff --git a/src/XML/auth/Description.php b/src/XML/auth/Description.php index aff1ed61..cf48ddce 100644 --- a/src/XML/auth/Description.php +++ b/src/XML/auth/Description.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization Description. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Description extends AbstractDescriptionType { diff --git a/src/XML/auth/DisplayName.php b/src/XML/auth/DisplayName.php index 490952cc..cd0ac0e1 100644 --- a/src/XML/auth/DisplayName.php +++ b/src/XML/auth/DisplayName.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization DisplayName. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DisplayName extends AbstractDisplayNameType { diff --git a/src/XML/auth/DisplayValue.php b/src/XML/auth/DisplayValue.php index a91f7df0..4eb49c26 100644 --- a/src/XML/auth/DisplayValue.php +++ b/src/XML/auth/DisplayValue.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization DisplayValue. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DisplayValue extends AbstractDisplayValueType { diff --git a/src/XML/auth/EncryptedValue.php b/src/XML/auth/EncryptedValue.php index 0604c428..6216cb73 100644 --- a/src/XML/auth/EncryptedValue.php +++ b/src/XML/auth/EncryptedValue.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization EncryptedValue. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedValue extends AbstractEncryptedValueType { diff --git a/src/XML/auth/StructuredValue.php b/src/XML/auth/StructuredValue.php index 9136a1c6..ecc45bb1 100644 --- a/src/XML/auth/StructuredValue.php +++ b/src/XML/auth/StructuredValue.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization StructuredValue. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class StructuredValue extends AbstractStructuredValueType { diff --git a/src/XML/auth/Value.php b/src/XML/auth/Value.php index a691ad89..8d7c745e 100644 --- a/src/XML/auth/Value.php +++ b/src/XML/auth/Value.php @@ -9,7 +9,7 @@ /** * Class representing WS-authorization Value. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Value extends AbstractAuthElement { diff --git a/src/XML/auth/ValueGreaterThan.php b/src/XML/auth/ValueGreaterThan.php index 4b9ac6e7..8837edbc 100644 --- a/src/XML/auth/ValueGreaterThan.php +++ b/src/XML/auth/ValueGreaterThan.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueGreaterThan. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueGreaterThan extends AbstractConstrainedSingleValueType { diff --git a/src/XML/auth/ValueGreaterThanOrEqual.php b/src/XML/auth/ValueGreaterThanOrEqual.php index 1f293c1b..e712b9c4 100644 --- a/src/XML/auth/ValueGreaterThanOrEqual.php +++ b/src/XML/auth/ValueGreaterThanOrEqual.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueGreaterThanOrEqual. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueGreaterThanOrEqual extends AbstractConstrainedSingleValueType { diff --git a/src/XML/auth/ValueInRangen.php b/src/XML/auth/ValueInRangen.php index 399bc79d..b15a8717 100644 --- a/src/XML/auth/ValueInRangen.php +++ b/src/XML/auth/ValueInRangen.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueInRangen. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueInRangen extends AbstractValueInRangeType { diff --git a/src/XML/auth/ValueLessThan.php b/src/XML/auth/ValueLessThan.php index f60d3abf..929e1514 100644 --- a/src/XML/auth/ValueLessThan.php +++ b/src/XML/auth/ValueLessThan.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueLessThan. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueLessThan extends AbstractConstrainedSingleValueType { diff --git a/src/XML/auth/ValueLessThanOrEqual.php b/src/XML/auth/ValueLessThanOrEqual.php index 6dbfbc11..1a4f50ea 100644 --- a/src/XML/auth/ValueLessThanOrEqual.php +++ b/src/XML/auth/ValueLessThanOrEqual.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueLessThanOrEqual. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueLessThanOrEqual extends AbstractConstrainedSingleValueType { diff --git a/src/XML/auth/ValueLowerBound.php b/src/XML/auth/ValueLowerBound.php index 54ab6784..dbf75e8d 100644 --- a/src/XML/auth/ValueLowerBound.php +++ b/src/XML/auth/ValueLowerBound.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueLowerBound. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueLowerBound extends AbstractConstrainedSingleValueType { diff --git a/src/XML/auth/ValueOneOf.php b/src/XML/auth/ValueOneOf.php index c1570967..54f4a6a7 100644 --- a/src/XML/auth/ValueOneOf.php +++ b/src/XML/auth/ValueOneOf.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueOneOf. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueOneOf extends AbstractConstrainedManyValueType { diff --git a/src/XML/auth/ValueUpperBound.php b/src/XML/auth/ValueUpperBound.php index 117cfb30..addf444e 100644 --- a/src/XML/auth/ValueUpperBound.php +++ b/src/XML/auth/ValueUpperBound.php @@ -7,7 +7,7 @@ /** * Class representing WS-authorization ValueUpperBound. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueUpperBound extends AbstractConstrainedSingleValueType { diff --git a/src/XML/fed/AbstractApplicationServiceType.php b/src/XML/fed/AbstractApplicationServiceType.php index 41937260..a06cd1c9 100644 --- a/src/XML/fed/AbstractApplicationServiceType.php +++ b/src/XML/fed/AbstractApplicationServiceType.php @@ -15,7 +15,7 @@ /** * A ApplicationServiceType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractApplicationServiceType extends AbstractWebServiceDescriptorType { diff --git a/src/XML/fed/AbstractAssertionType.php b/src/XML/fed/AbstractAssertionType.php index cd5323c2..eb8163f7 100644 --- a/src/XML/fed/AbstractAssertionType.php +++ b/src/XML/fed/AbstractAssertionType.php @@ -15,7 +15,7 @@ /** * Class defining the AssertionType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAssertionType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractAttributeExtensibleString.php b/src/XML/fed/AbstractAttributeExtensibleString.php index aa41cbfa..dd77d3a3 100644 --- a/src/XML/fed/AbstractAttributeExtensibleString.php +++ b/src/XML/fed/AbstractAttributeExtensibleString.php @@ -14,7 +14,7 @@ /** * An AbstractAttributeExtensibleString element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributeExtensibleString extends AbstractFedElement { diff --git a/src/XML/fed/AbstractAttributeExtensibleURI.php b/src/XML/fed/AbstractAttributeExtensibleURI.php index 664e0994..d144cecd 100644 --- a/src/XML/fed/AbstractAttributeExtensibleURI.php +++ b/src/XML/fed/AbstractAttributeExtensibleURI.php @@ -14,7 +14,7 @@ /** * An AbstractAttributeExtensibleURI element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributeExtensibleURI extends AbstractFedElement { diff --git a/src/XML/fed/AbstractAttributeServiceType.php b/src/XML/fed/AbstractAttributeServiceType.php index f27732b6..5ea71707 100644 --- a/src/XML/fed/AbstractAttributeServiceType.php +++ b/src/XML/fed/AbstractAttributeServiceType.php @@ -15,7 +15,7 @@ /** * A AttributeServiceType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributeServiceType extends AbstractWebServiceDescriptorType { diff --git a/src/XML/fed/AbstractClaimDialectType.php b/src/XML/fed/AbstractClaimDialectType.php index 813917cb..ba6cd388 100644 --- a/src/XML/fed/AbstractClaimDialectType.php +++ b/src/XML/fed/AbstractClaimDialectType.php @@ -16,7 +16,7 @@ /** * Class defining the ClaimDialectType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClaimDialectType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractClaimDialectsOfferedType.php b/src/XML/fed/AbstractClaimDialectsOfferedType.php index 25661092..82f23178 100644 --- a/src/XML/fed/AbstractClaimDialectsOfferedType.php +++ b/src/XML/fed/AbstractClaimDialectsOfferedType.php @@ -16,7 +16,7 @@ /** * Class defining the ClaimDialectsOfferedType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClaimDialectsOfferedType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractClaimTypesOfferedType.php b/src/XML/fed/AbstractClaimTypesOfferedType.php index 639380b5..2f5d4300 100644 --- a/src/XML/fed/AbstractClaimTypesOfferedType.php +++ b/src/XML/fed/AbstractClaimTypesOfferedType.php @@ -16,7 +16,7 @@ /** * Class defining the ClaimTypesOfferedType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClaimTypesOfferedType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractClaimTypesRequestedType.php b/src/XML/fed/AbstractClaimTypesRequestedType.php index 9a39827d..078a7dae 100644 --- a/src/XML/fed/AbstractClaimTypesRequestedType.php +++ b/src/XML/fed/AbstractClaimTypesRequestedType.php @@ -16,7 +16,7 @@ /** * Class defining the ClaimTypesRequestedType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClaimTypesRequestedType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractClientPseudonymType.php b/src/XML/fed/AbstractClientPseudonymType.php index 82f0c628..0fdd5b1c 100644 --- a/src/XML/fed/AbstractClientPseudonymType.php +++ b/src/XML/fed/AbstractClientPseudonymType.php @@ -18,7 +18,7 @@ /** * Class defining the ClientPseudonymType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClientPseudonymType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractEndpointType.php b/src/XML/fed/AbstractEndpointType.php index 1858ab5b..b2db555d 100644 --- a/src/XML/fed/AbstractEndpointType.php +++ b/src/XML/fed/AbstractEndpointType.php @@ -13,7 +13,7 @@ /** * An EndpointType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEndpointType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractFedElement.php b/src/XML/fed/AbstractFedElement.php index ed1b5478..8ac669bb 100644 --- a/src/XML/fed/AbstractFedElement.php +++ b/src/XML/fed/AbstractFedElement.php @@ -11,7 +11,7 @@ * Abstract class to be implemented by all the classes in this namespace * * @see http://docs.oasis-open.org/wsfed/federation/v1.2/ws-federation.pdf - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractFedElement extends AbstractElement { diff --git a/src/XML/fed/AbstractFederationMetadataHandlerType.php b/src/XML/fed/AbstractFederationMetadataHandlerType.php index a0da6cc2..45c5ddc0 100644 --- a/src/XML/fed/AbstractFederationMetadataHandlerType.php +++ b/src/XML/fed/AbstractFederationMetadataHandlerType.php @@ -13,7 +13,7 @@ /** * Class defining the FederationMetadataHandlerType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractFederationMetadataHandlerType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractFederationMetadataType.php b/src/XML/fed/AbstractFederationMetadataType.php index 8da53fba..1b6321e8 100644 --- a/src/XML/fed/AbstractFederationMetadataType.php +++ b/src/XML/fed/AbstractFederationMetadataType.php @@ -16,7 +16,7 @@ /** * Class defining the FederationMetadataType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractFederationMetadataType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractFederationType.php b/src/XML/fed/AbstractFederationType.php index e3c61b49..8e9b7660 100644 --- a/src/XML/fed/AbstractFederationType.php +++ b/src/XML/fed/AbstractFederationType.php @@ -16,7 +16,7 @@ /** * Class defining the FederationType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractFederationType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractFilterPseudonymsType.php b/src/XML/fed/AbstractFilterPseudonymsType.php index 90de3316..bfc80854 100644 --- a/src/XML/fed/AbstractFilterPseudonymsType.php +++ b/src/XML/fed/AbstractFilterPseudonymsType.php @@ -16,7 +16,7 @@ /** * A FilterPseudonymsType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractFilterPseudonymsType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractFreshnessType.php b/src/XML/fed/AbstractFreshnessType.php index b17fb047..c7f653e5 100644 --- a/src/XML/fed/AbstractFreshnessType.php +++ b/src/XML/fed/AbstractFreshnessType.php @@ -19,7 +19,7 @@ /** * Class defining the FreshnessType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractFreshnessType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractIssuerNameType.php b/src/XML/fed/AbstractIssuerNameType.php index 1947c369..8ef66d9c 100644 --- a/src/XML/fed/AbstractIssuerNameType.php +++ b/src/XML/fed/AbstractIssuerNameType.php @@ -14,7 +14,7 @@ /** * Class defining the IssuerNameType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractIssuerNameType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractLogicalServiceNamesOfferedType.php b/src/XML/fed/AbstractLogicalServiceNamesOfferedType.php index 417e3d96..3db3070b 100644 --- a/src/XML/fed/AbstractLogicalServiceNamesOfferedType.php +++ b/src/XML/fed/AbstractLogicalServiceNamesOfferedType.php @@ -16,7 +16,7 @@ /** * Class defining the LogicalServiceNamesOfferedType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractLogicalServiceNamesOfferedType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractProofTokenType.php b/src/XML/fed/AbstractProofTokenType.php index dea2c3b6..8fe2f19c 100644 --- a/src/XML/fed/AbstractProofTokenType.php +++ b/src/XML/fed/AbstractProofTokenType.php @@ -17,7 +17,7 @@ /** * Class defining the ProofTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractProofTokenType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractPseudonymBasisType.php b/src/XML/fed/AbstractPseudonymBasisType.php index f104d4f6..88cf25ea 100644 --- a/src/XML/fed/AbstractPseudonymBasisType.php +++ b/src/XML/fed/AbstractPseudonymBasisType.php @@ -18,7 +18,7 @@ /** * Class defining the PseudonymBasisType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractPseudonymBasisType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractPseudonymServiceType.php b/src/XML/fed/AbstractPseudonymServiceType.php index be10e371..52909000 100644 --- a/src/XML/fed/AbstractPseudonymServiceType.php +++ b/src/XML/fed/AbstractPseudonymServiceType.php @@ -15,7 +15,7 @@ /** * A PseudonymServiceType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractPseudonymServiceType extends AbstractWebServiceDescriptorType { diff --git a/src/XML/fed/AbstractPseudonymType.php b/src/XML/fed/AbstractPseudonymType.php index a0dcb8be..54de6813 100644 --- a/src/XML/fed/AbstractPseudonymType.php +++ b/src/XML/fed/AbstractPseudonymType.php @@ -19,7 +19,7 @@ /** * A PseudonymType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractPseudonymType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractReferenceDigestType.php b/src/XML/fed/AbstractReferenceDigestType.php index f3708df7..4990d7e2 100644 --- a/src/XML/fed/AbstractReferenceDigestType.php +++ b/src/XML/fed/AbstractReferenceDigestType.php @@ -14,7 +14,7 @@ /** * An AbstractReferenceDigestType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractReferenceDigestType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractReferenceTokenType.php b/src/XML/fed/AbstractReferenceTokenType.php index c2aa2ac3..95b34c4b 100644 --- a/src/XML/fed/AbstractReferenceTokenType.php +++ b/src/XML/fed/AbstractReferenceTokenType.php @@ -17,7 +17,7 @@ /** * A ReferenceTokenType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractReferenceTokenType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractRelativeToType.php b/src/XML/fed/AbstractRelativeToType.php index 73ca60ff..69a3e10e 100644 --- a/src/XML/fed/AbstractRelativeToType.php +++ b/src/XML/fed/AbstractRelativeToType.php @@ -15,7 +15,7 @@ /** * Class defining the RelativeToType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRelativeToType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractRequestProofTokenType.php b/src/XML/fed/AbstractRequestProofTokenType.php index 6f1e9764..ae7dd32f 100644 --- a/src/XML/fed/AbstractRequestProofTokenType.php +++ b/src/XML/fed/AbstractRequestProofTokenType.php @@ -15,7 +15,7 @@ /** * Class defining the RequestProofTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestProofTokenType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractRequestPseudonymType.php b/src/XML/fed/AbstractRequestPseudonymType.php index 07fc7ea2..64755b82 100644 --- a/src/XML/fed/AbstractRequestPseudonymType.php +++ b/src/XML/fed/AbstractRequestPseudonymType.php @@ -15,7 +15,7 @@ /** * Class defining the RequestPseudonymType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestPseudonymType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractSecurityTokenServiceType.php b/src/XML/fed/AbstractSecurityTokenServiceType.php index 758c6437..1c5702af 100644 --- a/src/XML/fed/AbstractSecurityTokenServiceType.php +++ b/src/XML/fed/AbstractSecurityTokenServiceType.php @@ -15,7 +15,7 @@ /** * A SecurityTokenServiceType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSecurityTokenServiceType extends AbstractWebServiceDescriptorType { diff --git a/src/XML/fed/AbstractSecurityTokenType.php b/src/XML/fed/AbstractSecurityTokenType.php index 22905123..30684c49 100644 --- a/src/XML/fed/AbstractSecurityTokenType.php +++ b/src/XML/fed/AbstractSecurityTokenType.php @@ -17,7 +17,7 @@ /** * Class defining the SecurityTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSecurityTokenType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractSignOutBasisType.php b/src/XML/fed/AbstractSignOutBasisType.php index 533549a5..b5911601 100644 --- a/src/XML/fed/AbstractSignOutBasisType.php +++ b/src/XML/fed/AbstractSignOutBasisType.php @@ -16,7 +16,7 @@ /** * A SignOutBasisType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSignOutBasisType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractSignOutType.php b/src/XML/fed/AbstractSignOutType.php index c628cad5..9b7639f5 100644 --- a/src/XML/fed/AbstractSignOutType.php +++ b/src/XML/fed/AbstractSignOutType.php @@ -19,7 +19,7 @@ /** * A SignOutType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSignOutType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractTokenType.php b/src/XML/fed/AbstractTokenType.php index 29f39fc2..e7ff0d68 100644 --- a/src/XML/fed/AbstractTokenType.php +++ b/src/XML/fed/AbstractTokenType.php @@ -16,7 +16,7 @@ /** * Class defining the TokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractTokenType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractTokenTypesOfferedType.php b/src/XML/fed/AbstractTokenTypesOfferedType.php index db124a95..8934f2ba 100644 --- a/src/XML/fed/AbstractTokenTypesOfferedType.php +++ b/src/XML/fed/AbstractTokenTypesOfferedType.php @@ -18,7 +18,7 @@ /** * Class defining the TokenTypesOffered element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractTokenTypesOfferedType extends AbstractFedElement { diff --git a/src/XML/fed/AbstractWebServiceDescriptorType.php b/src/XML/fed/AbstractWebServiceDescriptorType.php index a7768a7d..073aed06 100644 --- a/src/XML/fed/AbstractWebServiceDescriptorType.php +++ b/src/XML/fed/AbstractWebServiceDescriptorType.php @@ -13,7 +13,7 @@ /** * An WebServiceDescriptorType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWebServiceDescriptorType extends AbstractRoleDescriptorType { diff --git a/src/XML/fed/AdditionalContextProcessed.php b/src/XML/fed/AdditionalContextProcessed.php index 55bfa175..ba387bd8 100644 --- a/src/XML/fed/AdditionalContextProcessed.php +++ b/src/XML/fed/AdditionalContextProcessed.php @@ -7,7 +7,7 @@ /** * An AdditionalContextProcessed element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AdditionalContextProcessed extends AbstractAssertionType { diff --git a/src/XML/fed/ApplicationServiceEndpoint.php b/src/XML/fed/ApplicationServiceEndpoint.php index d4163672..bc507dcc 100644 --- a/src/XML/fed/ApplicationServiceEndpoint.php +++ b/src/XML/fed/ApplicationServiceEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the ApplicationServiceEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ApplicationServiceEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/AttributeServiceEndpoint.php b/src/XML/fed/AttributeServiceEndpoint.php index b26fa96a..e1fffbba 100644 --- a/src/XML/fed/AttributeServiceEndpoint.php +++ b/src/XML/fed/AttributeServiceEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the AttributeServiceEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AttributeServiceEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/AttributeServiceEndpoints.php b/src/XML/fed/AttributeServiceEndpoints.php index 072b3c09..8893318f 100644 --- a/src/XML/fed/AttributeServiceEndpoints.php +++ b/src/XML/fed/AttributeServiceEndpoints.php @@ -7,7 +7,7 @@ /** * Class defining the AttributeServiceEndpoints element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AttributeServiceEndpoints extends AbstractEndpointType { diff --git a/src/XML/fed/AuthenticationToken.php b/src/XML/fed/AuthenticationToken.php index 0125eaa7..c2f9edc5 100644 --- a/src/XML/fed/AuthenticationToken.php +++ b/src/XML/fed/AuthenticationToken.php @@ -9,7 +9,7 @@ /** * An AuthenticationToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AuthenticationToken extends AbstractNestedPolicyType { diff --git a/src/XML/fed/AutomaticPseudonyms.php b/src/XML/fed/AutomaticPseudonyms.php index 5a69b258..91873382 100644 --- a/src/XML/fed/AutomaticPseudonyms.php +++ b/src/XML/fed/AutomaticPseudonyms.php @@ -15,7 +15,7 @@ /** * A AutomaticPseudonyms element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AutomaticPseudonyms extends AbstractFedElement { diff --git a/src/XML/fed/ClaimDialect.php b/src/XML/fed/ClaimDialect.php index 3b368c7a..d47ac457 100644 --- a/src/XML/fed/ClaimDialect.php +++ b/src/XML/fed/ClaimDialect.php @@ -7,7 +7,7 @@ /** * Class defining the ClaimDialect element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimDialect extends AbstractClaimDialectType { diff --git a/src/XML/fed/ClaimDialectsOffered.php b/src/XML/fed/ClaimDialectsOffered.php index 05fc1904..3dac61a9 100644 --- a/src/XML/fed/ClaimDialectsOffered.php +++ b/src/XML/fed/ClaimDialectsOffered.php @@ -7,7 +7,7 @@ /** * Class defining the ClaimDialectsOffered element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimDialectsOffered extends AbstractClaimDialectsOfferedType { diff --git a/src/XML/fed/ClaimTypesOffered.php b/src/XML/fed/ClaimTypesOffered.php index 5c66d838..c9ba4aee 100644 --- a/src/XML/fed/ClaimTypesOffered.php +++ b/src/XML/fed/ClaimTypesOffered.php @@ -7,7 +7,7 @@ /** * A ClaimTypesOffered element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimTypesOffered extends AbstractClaimTypesOfferedType { diff --git a/src/XML/fed/ClaimTypesRequested.php b/src/XML/fed/ClaimTypesRequested.php index 52520720..a2fc27e7 100644 --- a/src/XML/fed/ClaimTypesRequested.php +++ b/src/XML/fed/ClaimTypesRequested.php @@ -7,7 +7,7 @@ /** * A ClaimTypesRequested element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimTypesRequested extends AbstractClaimTypesRequestedType { diff --git a/src/XML/fed/ClientPseudonym.php b/src/XML/fed/ClientPseudonym.php index 5092e5d9..662c4518 100644 --- a/src/XML/fed/ClientPseudonym.php +++ b/src/XML/fed/ClientPseudonym.php @@ -7,7 +7,7 @@ /** * A ClientPseudonym element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClientPseudonym extends AbstractClientPseudonymType { diff --git a/src/XML/fed/DisplayName.php b/src/XML/fed/DisplayName.php index db5ee039..9f0fec6a 100644 --- a/src/XML/fed/DisplayName.php +++ b/src/XML/fed/DisplayName.php @@ -7,7 +7,7 @@ /** * A DisplayName element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DisplayName extends AbstractAttributeExtensibleString { diff --git a/src/XML/fed/EMail.php b/src/XML/fed/EMail.php index 21451d45..74c7d9c3 100644 --- a/src/XML/fed/EMail.php +++ b/src/XML/fed/EMail.php @@ -7,7 +7,7 @@ /** * An EMail element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EMail extends AbstractAttributeExtensibleString { diff --git a/src/XML/fed/Federation.php b/src/XML/fed/Federation.php index addf2531..367fdf7a 100644 --- a/src/XML/fed/Federation.php +++ b/src/XML/fed/Federation.php @@ -7,7 +7,7 @@ /** * A Federation element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Federation extends AbstractFederationType { diff --git a/src/XML/fed/FederationID.php b/src/XML/fed/FederationID.php index d7231c7b..48a38367 100644 --- a/src/XML/fed/FederationID.php +++ b/src/XML/fed/FederationID.php @@ -7,7 +7,7 @@ /** * A FederationID element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationID extends AbstractAttributeExtensibleURI { diff --git a/src/XML/fed/FederationMetadata.php b/src/XML/fed/FederationMetadata.php index bca7a831..5988ef1b 100644 --- a/src/XML/fed/FederationMetadata.php +++ b/src/XML/fed/FederationMetadata.php @@ -7,7 +7,7 @@ /** * A FederationMetadata element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationMetadata extends AbstractFederationMetadataType { diff --git a/src/XML/fed/FederationMetadataHandler.php b/src/XML/fed/FederationMetadataHandler.php index e6fb31f3..c3e0b40d 100644 --- a/src/XML/fed/FederationMetadataHandler.php +++ b/src/XML/fed/FederationMetadataHandler.php @@ -7,7 +7,7 @@ /** * A FederationMetadataHandler element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationMetadataHandler extends AbstractFederationMetadataHandlerType { diff --git a/src/XML/fed/FilterPseudonyms.php b/src/XML/fed/FilterPseudonyms.php index 6b781eee..79653f19 100644 --- a/src/XML/fed/FilterPseudonyms.php +++ b/src/XML/fed/FilterPseudonyms.php @@ -7,7 +7,7 @@ /** * A FilterPseudonyms element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FilterPseudonyms extends AbstractFilterPseudonymsType { diff --git a/src/XML/fed/Freshness.php b/src/XML/fed/Freshness.php index aececb52..a803fb75 100644 --- a/src/XML/fed/Freshness.php +++ b/src/XML/fed/Freshness.php @@ -7,7 +7,7 @@ /** * A Freshness element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Freshness extends AbstractFreshnessType { diff --git a/src/XML/fed/IssuerName.php b/src/XML/fed/IssuerName.php index abb587ee..4caa2595 100644 --- a/src/XML/fed/IssuerName.php +++ b/src/XML/fed/IssuerName.php @@ -7,7 +7,7 @@ /** * Class defining the IssuerName element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuerName extends AbstractIssuerNameType { diff --git a/src/XML/fed/IssuesSpecificPolicyFault.php b/src/XML/fed/IssuesSpecificPolicyFault.php index 9480f784..f81301c9 100644 --- a/src/XML/fed/IssuesSpecificPolicyFault.php +++ b/src/XML/fed/IssuesSpecificPolicyFault.php @@ -9,7 +9,7 @@ /** * A IssuesSpecificPolicyFault element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuesSpecificPolicyFault extends AbstractAssertionType { diff --git a/src/XML/fed/LogicalServiceNamesOffered.php b/src/XML/fed/LogicalServiceNamesOffered.php index 69b8a3aa..d5e2e485 100644 --- a/src/XML/fed/LogicalServiceNamesOffered.php +++ b/src/XML/fed/LogicalServiceNamesOffered.php @@ -7,7 +7,7 @@ /** * Class defining the LogicalServiceNamesOffered element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LogicalServiceNamesOffered extends AbstractLogicalServiceNamesOfferedType { diff --git a/src/XML/fed/PPID.php b/src/XML/fed/PPID.php index f3aaee2b..8634321f 100644 --- a/src/XML/fed/PPID.php +++ b/src/XML/fed/PPID.php @@ -7,7 +7,7 @@ /** * A PPID element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PPID extends AbstractAttributeExtensibleString { diff --git a/src/XML/fed/PassiveRequestorEndpoint.php b/src/XML/fed/PassiveRequestorEndpoint.php index b0717b0d..9c25a5a2 100644 --- a/src/XML/fed/PassiveRequestorEndpoint.php +++ b/src/XML/fed/PassiveRequestorEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the PassiveRequestorEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PassiveRequestorEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/PassiveRequestorEndpoints.php b/src/XML/fed/PassiveRequestorEndpoints.php index e6662b2a..ac4fc775 100644 --- a/src/XML/fed/PassiveRequestorEndpoints.php +++ b/src/XML/fed/PassiveRequestorEndpoints.php @@ -7,7 +7,7 @@ /** * Class defining the PassiveRequestorEndpoints element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PassiveRequestorEndpoints extends AbstractEndpointType { diff --git a/src/XML/fed/ProofToken.php b/src/XML/fed/ProofToken.php index d55303ec..30265bed 100644 --- a/src/XML/fed/ProofToken.php +++ b/src/XML/fed/ProofToken.php @@ -7,7 +7,7 @@ /** * A ProofToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProofToken extends AbstractProofTokenType { diff --git a/src/XML/fed/Pseudonym.php b/src/XML/fed/Pseudonym.php index 5e983c00..738e0b20 100644 --- a/src/XML/fed/Pseudonym.php +++ b/src/XML/fed/Pseudonym.php @@ -7,7 +7,7 @@ /** * A Pseudonym element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Pseudonym extends AbstractPseudonymType { diff --git a/src/XML/fed/PseudonymBasis.php b/src/XML/fed/PseudonymBasis.php index 0ba795e8..3dc9a08e 100644 --- a/src/XML/fed/PseudonymBasis.php +++ b/src/XML/fed/PseudonymBasis.php @@ -7,7 +7,7 @@ /** * A PseudonymBasis element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PseudonymBasis extends AbstractPseudonymBasisType { diff --git a/src/XML/fed/PseudonymServiceEndpoint.php b/src/XML/fed/PseudonymServiceEndpoint.php index 48b4890a..31d6abe6 100644 --- a/src/XML/fed/PseudonymServiceEndpoint.php +++ b/src/XML/fed/PseudonymServiceEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the PseudonymServiceEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PseudonymServiceEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/Realm.php b/src/XML/fed/Realm.php index 7b45dc8b..738e92b1 100644 --- a/src/XML/fed/Realm.php +++ b/src/XML/fed/Realm.php @@ -9,7 +9,7 @@ /** * A Realm element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Realm extends AbstractFedElement { diff --git a/src/XML/fed/ReferenceDigest.php b/src/XML/fed/ReferenceDigest.php index 493fc879..abd97a3b 100644 --- a/src/XML/fed/ReferenceDigest.php +++ b/src/XML/fed/ReferenceDigest.php @@ -7,7 +7,7 @@ /** * A ReferenceDigest element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceDigest extends AbstractReferenceDigestType { diff --git a/src/XML/fed/ReferenceEPR.php b/src/XML/fed/ReferenceEPR.php index b9723ba8..ee1f5b5e 100644 --- a/src/XML/fed/ReferenceEPR.php +++ b/src/XML/fed/ReferenceEPR.php @@ -9,7 +9,7 @@ /** * A ReferenceEPR element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceEPR extends AbstractEndpointReferenceType { diff --git a/src/XML/fed/ReferenceToken.php b/src/XML/fed/ReferenceToken.php index a1ee8248..0f201ebe 100644 --- a/src/XML/fed/ReferenceToken.php +++ b/src/XML/fed/ReferenceToken.php @@ -7,7 +7,7 @@ /** * A ReferenceToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceToken extends AbstractReferenceTokenType { diff --git a/src/XML/fed/ReferenceToken11.php b/src/XML/fed/ReferenceToken11.php index e3c2f511..17ad2c2f 100644 --- a/src/XML/fed/ReferenceToken11.php +++ b/src/XML/fed/ReferenceToken11.php @@ -9,7 +9,7 @@ /** * A ReferenceToken11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceToken11 extends AbstractAssertionType { diff --git a/src/XML/fed/ReferenceType.php b/src/XML/fed/ReferenceType.php index c0c58fda..32da9537 100644 --- a/src/XML/fed/ReferenceType.php +++ b/src/XML/fed/ReferenceType.php @@ -7,7 +7,7 @@ /** * A ReferenceType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceType extends AbstractAttributeExtensibleURI { diff --git a/src/XML/fed/RelativeTo.php b/src/XML/fed/RelativeTo.php index b2a62c66..4b83d72e 100644 --- a/src/XML/fed/RelativeTo.php +++ b/src/XML/fed/RelativeTo.php @@ -7,7 +7,7 @@ /** * A RelativeTo element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RelativeTo extends AbstractRelativeToType { diff --git a/src/XML/fed/RequestProofToken.php b/src/XML/fed/RequestProofToken.php index c656d1dc..512aecce 100644 --- a/src/XML/fed/RequestProofToken.php +++ b/src/XML/fed/RequestProofToken.php @@ -7,7 +7,7 @@ /** * A RequestProofToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestProofToken extends AbstractRequestProofTokenType { diff --git a/src/XML/fed/RequestPseudonym.php b/src/XML/fed/RequestPseudonym.php index 05391879..cbd6a009 100644 --- a/src/XML/fed/RequestPseudonym.php +++ b/src/XML/fed/RequestPseudonym.php @@ -7,7 +7,7 @@ /** * A RequestPseudonym element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestPseudonym extends AbstractRequestPseudonymType { diff --git a/src/XML/fed/RequireBearerTokens.php b/src/XML/fed/RequireBearerTokens.php index bc9b9a1f..1302c47d 100644 --- a/src/XML/fed/RequireBearerTokens.php +++ b/src/XML/fed/RequireBearerTokens.php @@ -9,7 +9,7 @@ /** * A RequireBearerTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireBearerTokens extends AbstractAssertionType { diff --git a/src/XML/fed/RequireReferenceToken.php b/src/XML/fed/RequireReferenceToken.php index 1bb27a59..5afc2f2a 100644 --- a/src/XML/fed/RequireReferenceToken.php +++ b/src/XML/fed/RequireReferenceToken.php @@ -9,7 +9,7 @@ /** * An RequireReferenceToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireReferenceToken extends AbstractTokenAssertionType { diff --git a/src/XML/fed/RequireSharedCookies.php b/src/XML/fed/RequireSharedCookies.php index 9a6e747a..4ccca46b 100644 --- a/src/XML/fed/RequireSharedCookies.php +++ b/src/XML/fed/RequireSharedCookies.php @@ -9,7 +9,7 @@ /** * A RequireSharedCookies element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireSharedCookies extends AbstractAssertionType { diff --git a/src/XML/fed/RequireSignedTokens.php b/src/XML/fed/RequireSignedTokens.php index 58dbd818..690f539d 100644 --- a/src/XML/fed/RequireSignedTokens.php +++ b/src/XML/fed/RequireSignedTokens.php @@ -9,7 +9,7 @@ /** * A RequireSignedTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireSignedTokens extends AbstractAssertionType { diff --git a/src/XML/fed/RequiresGenericClaimDialect.php b/src/XML/fed/RequiresGenericClaimDialect.php index 212dba14..55639ba2 100644 --- a/src/XML/fed/RequiresGenericClaimDialect.php +++ b/src/XML/fed/RequiresGenericClaimDialect.php @@ -9,7 +9,7 @@ /** * A RequiresGenericClaimDialect element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequiresGenericClaimDialect extends AbstractAssertionType { diff --git a/src/XML/fed/SecurityToken.php b/src/XML/fed/SecurityToken.php index 26233181..68a08698 100644 --- a/src/XML/fed/SecurityToken.php +++ b/src/XML/fed/SecurityToken.php @@ -7,7 +7,7 @@ /** * A SecurityToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityToken extends AbstractSecurityTokenType { diff --git a/src/XML/fed/SecurityTokenServiceEndpoint.php b/src/XML/fed/SecurityTokenServiceEndpoint.php index f8747f2e..fe613d0f 100644 --- a/src/XML/fed/SecurityTokenServiceEndpoint.php +++ b/src/XML/fed/SecurityTokenServiceEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the SecurityTokenServiceEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityTokenServiceEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/SerialNo.php b/src/XML/fed/SerialNo.php index be75997f..8204ea4c 100644 --- a/src/XML/fed/SerialNo.php +++ b/src/XML/fed/SerialNo.php @@ -7,7 +7,7 @@ /** * A SerialNo element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SerialNo extends AbstractAttributeExtensibleURI { diff --git a/src/XML/fed/SignOut.php b/src/XML/fed/SignOut.php index 154afcce..43fb167e 100644 --- a/src/XML/fed/SignOut.php +++ b/src/XML/fed/SignOut.php @@ -7,7 +7,7 @@ /** * Class defining the SignOut element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignOut extends AbstractSignOutType { diff --git a/src/XML/fed/SignOutBasis.php b/src/XML/fed/SignOutBasis.php index acd55f8f..4a1ba5a2 100644 --- a/src/XML/fed/SignOutBasis.php +++ b/src/XML/fed/SignOutBasis.php @@ -7,7 +7,7 @@ /** * A SignOutBasis element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignOutBasis extends AbstractSignOutBasisType { diff --git a/src/XML/fed/SingleSignOutNotificationEndpoint.php b/src/XML/fed/SingleSignOutNotificationEndpoint.php index 196b55dc..a864c8c0 100644 --- a/src/XML/fed/SingleSignOutNotificationEndpoint.php +++ b/src/XML/fed/SingleSignOutNotificationEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the SingleSignOutNotificationEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutNotificationEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/SingleSignOutNotificationEndpoints.php b/src/XML/fed/SingleSignOutNotificationEndpoints.php index 4660f19d..4294cbb1 100644 --- a/src/XML/fed/SingleSignOutNotificationEndpoints.php +++ b/src/XML/fed/SingleSignOutNotificationEndpoints.php @@ -7,7 +7,7 @@ /** * Class defining the SingleSignOutNotificationEndpoints element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutNotificationEndpoints extends AbstractEndpointType { diff --git a/src/XML/fed/SingleSignOutSubscriptionEndpoint.php b/src/XML/fed/SingleSignOutSubscriptionEndpoint.php index 48a4d4cb..bac6c99a 100644 --- a/src/XML/fed/SingleSignOutSubscriptionEndpoint.php +++ b/src/XML/fed/SingleSignOutSubscriptionEndpoint.php @@ -7,7 +7,7 @@ /** * Class defining the SingleSignOutSubscriptionEndpoint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutSubscriptionEndpoint extends AbstractEndpointType { diff --git a/src/XML/fed/SingleSignOutSubscriptionEndpoints.php b/src/XML/fed/SingleSignOutSubscriptionEndpoints.php index eaa11a5e..54da9eef 100644 --- a/src/XML/fed/SingleSignOutSubscriptionEndpoints.php +++ b/src/XML/fed/SingleSignOutSubscriptionEndpoints.php @@ -7,7 +7,7 @@ /** * Class defining the SingleSignOutSubscriptionEndpoints element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutSubscriptionEndpoints extends AbstractEndpointType { diff --git a/src/XML/fed/TargetScopes.php b/src/XML/fed/TargetScopes.php index d6d5e740..2a370352 100644 --- a/src/XML/fed/TargetScopes.php +++ b/src/XML/fed/TargetScopes.php @@ -7,7 +7,7 @@ /** * Class defining the TargetScopes element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TargetScopes extends AbstractEndpointType { diff --git a/src/XML/fed/TokenType.php b/src/XML/fed/TokenType.php index 282ce3ae..90c68166 100644 --- a/src/XML/fed/TokenType.php +++ b/src/XML/fed/TokenType.php @@ -7,7 +7,7 @@ /** * Class defining the TokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TokenType extends AbstractTokenType { diff --git a/src/XML/fed/TokenTypesOffered.php b/src/XML/fed/TokenTypesOffered.php index c3058981..3aee27f1 100644 --- a/src/XML/fed/TokenTypesOffered.php +++ b/src/XML/fed/TokenTypesOffered.php @@ -7,7 +7,7 @@ /** * Class defining the TokenTypesOffered element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TokenTypesOffered extends AbstractTokenTypesOfferedType { diff --git a/src/XML/fed/WebBinding.php b/src/XML/fed/WebBinding.php index 58497598..9cedb1d6 100644 --- a/src/XML/fed/WebBinding.php +++ b/src/XML/fed/WebBinding.php @@ -9,7 +9,7 @@ /** * A WebBinding element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WebBinding extends AbstractNestedPolicyType { diff --git a/src/XML/sp/AbsXPath.php b/src/XML/sp/AbsXPath.php index b59ff705..1f3a8b9c 100644 --- a/src/XML/sp/AbsXPath.php +++ b/src/XML/sp/AbsXPath.php @@ -7,7 +7,7 @@ /** * An AbsXPath element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AbsXPath extends AbstractQNameAssertionType { diff --git a/src/XML/sp/AbstractEmptyType.php b/src/XML/sp/AbstractEmptyType.php index f3ad5444..48e2c8c3 100644 --- a/src/XML/sp/AbstractEmptyType.php +++ b/src/XML/sp/AbstractEmptyType.php @@ -13,7 +13,7 @@ /** * Class representing WS security policy EmptyType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEmptyType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractHeaderType.php b/src/XML/sp/AbstractHeaderType.php index 92daa4f8..5415c1fe 100644 --- a/src/XML/sp/AbstractHeaderType.php +++ b/src/XML/sp/AbstractHeaderType.php @@ -15,7 +15,7 @@ /** * Class representing WS security policy HeaderType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractHeaderType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractIssuedTokenType.php b/src/XML/sp/AbstractIssuedTokenType.php index 93056f87..35380839 100644 --- a/src/XML/sp/AbstractIssuedTokenType.php +++ b/src/XML/sp/AbstractIssuedTokenType.php @@ -22,7 +22,7 @@ /** * Class representing WS security policy IssuedTokenType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractIssuedTokenType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractKeyValueTokenType.php b/src/XML/sp/AbstractKeyValueTokenType.php index 5b1c9d1a..5c47876b 100644 --- a/src/XML/sp/AbstractKeyValueTokenType.php +++ b/src/XML/sp/AbstractKeyValueTokenType.php @@ -19,7 +19,7 @@ /** * Class representing WS security policy KeyValueTokenType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractKeyValueTokenType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractNestedPolicyType.php b/src/XML/sp/AbstractNestedPolicyType.php index a5e7430f..c4d6fb2c 100644 --- a/src/XML/sp/AbstractNestedPolicyType.php +++ b/src/XML/sp/AbstractNestedPolicyType.php @@ -15,7 +15,7 @@ /** * Class representing sp:NestedPolicyType * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractNestedPolicyType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractQNameAssertionType.php b/src/XML/sp/AbstractQNameAssertionType.php index eebdf5c4..5b09941b 100644 --- a/src/XML/sp/AbstractQNameAssertionType.php +++ b/src/XML/sp/AbstractQNameAssertionType.php @@ -15,7 +15,7 @@ /** * Class representing WS security policy QNameAssertionType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractQNameAssertionType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractReqPartsType.php b/src/XML/sp/AbstractReqPartsType.php index 96b33770..5988f378 100644 --- a/src/XML/sp/AbstractReqPartsType.php +++ b/src/XML/sp/AbstractReqPartsType.php @@ -18,7 +18,7 @@ /** * Class representing WS security policy AbstractReqPartsType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractReqPartsType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractRequestSecurityTokenTemplateType.php b/src/XML/sp/AbstractRequestSecurityTokenTemplateType.php index 44068fce..37aa1bf8 100644 --- a/src/XML/sp/AbstractRequestSecurityTokenTemplateType.php +++ b/src/XML/sp/AbstractRequestSecurityTokenTemplateType.php @@ -17,7 +17,7 @@ /** * Class representing WS security policy RequestSecurityTokenTemplateType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestSecurityTokenTemplateType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractSePartsType.php b/src/XML/sp/AbstractSePartsType.php index 179cb8c7..cedadd5e 100644 --- a/src/XML/sp/AbstractSePartsType.php +++ b/src/XML/sp/AbstractSePartsType.php @@ -19,7 +19,7 @@ /** * Class representing WS security policy AbstractSePartsType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSePartsType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractSecureConversationTokenType.php b/src/XML/sp/AbstractSecureConversationTokenType.php index 4652f39a..a9b92e27 100644 --- a/src/XML/sp/AbstractSecureConversationTokenType.php +++ b/src/XML/sp/AbstractSecureConversationTokenType.php @@ -20,7 +20,7 @@ /** * Class representing WS security policy SecureConversationTokenType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSecureConversationTokenType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractSerElementsType.php b/src/XML/sp/AbstractSerElementsType.php index fb61e72f..7ced6462 100644 --- a/src/XML/sp/AbstractSerElementsType.php +++ b/src/XML/sp/AbstractSerElementsType.php @@ -18,7 +18,7 @@ /** * Class representing WS security policy SetElementsType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSerElementsType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractSpElement.php b/src/XML/sp/AbstractSpElement.php index c891a98f..b6854bb4 100644 --- a/src/XML/sp/AbstractSpElement.php +++ b/src/XML/sp/AbstractSpElement.php @@ -10,7 +10,7 @@ /** * Abstract class to be implemented by all the classes in this namespace * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSpElement extends AbstractElement { diff --git a/src/XML/sp/AbstractSpnegoContextTokenType.php b/src/XML/sp/AbstractSpnegoContextTokenType.php index 14e5f5c7..130a9448 100644 --- a/src/XML/sp/AbstractSpnegoContextTokenType.php +++ b/src/XML/sp/AbstractSpnegoContextTokenType.php @@ -20,7 +20,7 @@ /** * Class representing WS security policy SpnegoContextTokenType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSpnegoContextTokenType extends AbstractSpElement { diff --git a/src/XML/sp/AbstractTokenAssertionType.php b/src/XML/sp/AbstractTokenAssertionType.php index 9c624373..b48829b1 100644 --- a/src/XML/sp/AbstractTokenAssertionType.php +++ b/src/XML/sp/AbstractTokenAssertionType.php @@ -19,7 +19,7 @@ /** * Class representing WS security policy TokenAssertionType. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractTokenAssertionType extends AbstractSpElement { diff --git a/src/XML/sp/AlgorithmSuite.php b/src/XML/sp/AlgorithmSuite.php index 07ee5ca8..1a6841b3 100644 --- a/src/XML/sp/AlgorithmSuite.php +++ b/src/XML/sp/AlgorithmSuite.php @@ -7,7 +7,7 @@ /** * An AlgorithmSuite element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AlgorithmSuite extends AbstractNestedPolicyType { diff --git a/src/XML/sp/AsymmetricBinding.php b/src/XML/sp/AsymmetricBinding.php index 21bf0d4a..2bb87296 100644 --- a/src/XML/sp/AsymmetricBinding.php +++ b/src/XML/sp/AsymmetricBinding.php @@ -7,7 +7,7 @@ /** * An AsymmetricBinding element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AsymmetricBinding extends AbstractNestedPolicyType { diff --git a/src/XML/sp/Attachments.php b/src/XML/sp/Attachments.php index 65d7b910..ac6e6a0f 100644 --- a/src/XML/sp/Attachments.php +++ b/src/XML/sp/Attachments.php @@ -7,7 +7,7 @@ /** * An Attachments element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Attachments extends AbstractEmptyType { diff --git a/src/XML/sp/Basic128.php b/src/XML/sp/Basic128.php index bf919f63..a979e936 100644 --- a/src/XML/sp/Basic128.php +++ b/src/XML/sp/Basic128.php @@ -7,7 +7,7 @@ /** * An Basic128 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic128Rsa15.php b/src/XML/sp/Basic128Rsa15.php index da8ebab3..afb1b946 100644 --- a/src/XML/sp/Basic128Rsa15.php +++ b/src/XML/sp/Basic128Rsa15.php @@ -7,7 +7,7 @@ /** * An Basic128Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic128Sha256.php b/src/XML/sp/Basic128Sha256.php index 1d76a171..b384c58e 100644 --- a/src/XML/sp/Basic128Sha256.php +++ b/src/XML/sp/Basic128Sha256.php @@ -7,7 +7,7 @@ /** * An Basic128Sha256 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Sha256 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic128Sha256Rsa15.php b/src/XML/sp/Basic128Sha256Rsa15.php index 89a97bad..312073eb 100644 --- a/src/XML/sp/Basic128Sha256Rsa15.php +++ b/src/XML/sp/Basic128Sha256Rsa15.php @@ -7,7 +7,7 @@ /** * An Basic128Sha256Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Sha256Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic192.php b/src/XML/sp/Basic192.php index 94131e2d..6808ce37 100644 --- a/src/XML/sp/Basic192.php +++ b/src/XML/sp/Basic192.php @@ -7,7 +7,7 @@ /** * An Basic192 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic192Rsa15.php b/src/XML/sp/Basic192Rsa15.php index a28ad68b..b0eb3084 100644 --- a/src/XML/sp/Basic192Rsa15.php +++ b/src/XML/sp/Basic192Rsa15.php @@ -7,7 +7,7 @@ /** * An Basic192Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic192Sha256.php b/src/XML/sp/Basic192Sha256.php index 92935528..0aaa37ef 100644 --- a/src/XML/sp/Basic192Sha256.php +++ b/src/XML/sp/Basic192Sha256.php @@ -7,7 +7,7 @@ /** * An Basic192Sha256 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Sha256 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic192Sha256Rsa15.php b/src/XML/sp/Basic192Sha256Rsa15.php index 06856ff8..51ab0e5f 100644 --- a/src/XML/sp/Basic192Sha256Rsa15.php +++ b/src/XML/sp/Basic192Sha256Rsa15.php @@ -7,7 +7,7 @@ /** * An Basic192Sha256Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Sha256Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic256.php b/src/XML/sp/Basic256.php index c768b664..3d9641e8 100644 --- a/src/XML/sp/Basic256.php +++ b/src/XML/sp/Basic256.php @@ -7,7 +7,7 @@ /** * An Basic256 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic256Rsa15.php b/src/XML/sp/Basic256Rsa15.php index 3994434b..06f32245 100644 --- a/src/XML/sp/Basic256Rsa15.php +++ b/src/XML/sp/Basic256Rsa15.php @@ -7,7 +7,7 @@ /** * An Basic256Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic256Sha256.php b/src/XML/sp/Basic256Sha256.php index d70847e4..d1bed16a 100644 --- a/src/XML/sp/Basic256Sha256.php +++ b/src/XML/sp/Basic256Sha256.php @@ -7,7 +7,7 @@ /** * An Basic256Sha256 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Sha256 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Basic256Sha256Rsa15.php b/src/XML/sp/Basic256Sha256Rsa15.php index ac032552..5348f126 100644 --- a/src/XML/sp/Basic256Sha256Rsa15.php +++ b/src/XML/sp/Basic256Sha256Rsa15.php @@ -7,7 +7,7 @@ /** * An Basic256Sha256Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Sha256Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Body.php b/src/XML/sp/Body.php index b90f0de8..b01713ab 100644 --- a/src/XML/sp/Body.php +++ b/src/XML/sp/Body.php @@ -7,7 +7,7 @@ /** * An Body element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Body extends AbstractEmptyType { diff --git a/src/XML/sp/BootstrapPolicy.php b/src/XML/sp/BootstrapPolicy.php index 0eee35c1..3c6bfa99 100644 --- a/src/XML/sp/BootstrapPolicy.php +++ b/src/XML/sp/BootstrapPolicy.php @@ -7,7 +7,7 @@ /** * A BootstrapPolicy element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BootstrapPolicy extends AbstractNestedPolicyType { diff --git a/src/XML/sp/ContentEncryptedElements.php b/src/XML/sp/ContentEncryptedElements.php index b25bb8e4..29bc7da8 100644 --- a/src/XML/sp/ContentEncryptedElements.php +++ b/src/XML/sp/ContentEncryptedElements.php @@ -7,7 +7,7 @@ /** * An ContentEncryptedElements element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ContentEncryptedElements extends AbstractSerElementsType { diff --git a/src/XML/sp/EncryptBeforeSigning.php b/src/XML/sp/EncryptBeforeSigning.php index c6a5fa67..7d076985 100644 --- a/src/XML/sp/EncryptBeforeSigning.php +++ b/src/XML/sp/EncryptBeforeSigning.php @@ -7,7 +7,7 @@ /** * An EncryptBeforeSigning element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptBeforeSigning extends AbstractQNameAssertionType { diff --git a/src/XML/sp/EncryptSignature.php b/src/XML/sp/EncryptSignature.php index e834f69a..52ca1d7e 100644 --- a/src/XML/sp/EncryptSignature.php +++ b/src/XML/sp/EncryptSignature.php @@ -7,7 +7,7 @@ /** * An EncryptSignature element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptSignature extends AbstractQNameAssertionType { diff --git a/src/XML/sp/EncryptedElements.php b/src/XML/sp/EncryptedElements.php index 43e081a1..c46f3284 100644 --- a/src/XML/sp/EncryptedElements.php +++ b/src/XML/sp/EncryptedElements.php @@ -7,7 +7,7 @@ /** * An EncryptedElements element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedElements extends AbstractSerElementsType { diff --git a/src/XML/sp/EncryptedParts.php b/src/XML/sp/EncryptedParts.php index 8fdf3866..df78da6f 100644 --- a/src/XML/sp/EncryptedParts.php +++ b/src/XML/sp/EncryptedParts.php @@ -7,7 +7,7 @@ /** * An EncryptedParts element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedParts extends AbstractSePartsType { diff --git a/src/XML/sp/EncryptedSupportingTokens.php b/src/XML/sp/EncryptedSupportingTokens.php index a5b3fb42..9c326236 100644 --- a/src/XML/sp/EncryptedSupportingTokens.php +++ b/src/XML/sp/EncryptedSupportingTokens.php @@ -7,7 +7,7 @@ /** * A EncryptedSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/EncryptionToken.php b/src/XML/sp/EncryptionToken.php index d5a33838..cac89676 100644 --- a/src/XML/sp/EncryptionToken.php +++ b/src/XML/sp/EncryptionToken.php @@ -7,7 +7,7 @@ /** * An EncryptionToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptionToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/EndorsingEncryptedSupportingTokens.php b/src/XML/sp/EndorsingEncryptedSupportingTokens.php index 96a831dd..5905f56a 100644 --- a/src/XML/sp/EndorsingEncryptedSupportingTokens.php +++ b/src/XML/sp/EndorsingEncryptedSupportingTokens.php @@ -7,7 +7,7 @@ /** * A EndorsingEncryptedSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EndorsingEncryptedSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/EndorsingSupportingTokens.php b/src/XML/sp/EndorsingSupportingTokens.php index 08b041e8..d0421b64 100644 --- a/src/XML/sp/EndorsingSupportingTokens.php +++ b/src/XML/sp/EndorsingSupportingTokens.php @@ -7,7 +7,7 @@ /** * A EndorsingSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EndorsingSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/HashPassword.php b/src/XML/sp/HashPassword.php index 62d4a368..a39948c8 100644 --- a/src/XML/sp/HashPassword.php +++ b/src/XML/sp/HashPassword.php @@ -7,7 +7,7 @@ /** * An HashPassword element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HashPassword extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Header.php b/src/XML/sp/Header.php index b978f470..6ae7d251 100644 --- a/src/XML/sp/Header.php +++ b/src/XML/sp/Header.php @@ -7,7 +7,7 @@ /** * An Header element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Header extends AbstractHeaderType { diff --git a/src/XML/sp/HttpBasicAuthentication.php b/src/XML/sp/HttpBasicAuthentication.php index 888dd16c..669dbff9 100644 --- a/src/XML/sp/HttpBasicAuthentication.php +++ b/src/XML/sp/HttpBasicAuthentication.php @@ -7,7 +7,7 @@ /** * An HttpBasicAuthentication element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HttpBasicAuthentication extends AbstractQNameAssertionType { diff --git a/src/XML/sp/HttpDigestAuthentication.php b/src/XML/sp/HttpDigestAuthentication.php index 58cc74e3..fe327387 100644 --- a/src/XML/sp/HttpDigestAuthentication.php +++ b/src/XML/sp/HttpDigestAuthentication.php @@ -7,7 +7,7 @@ /** * An HttpDigestAuthentication element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HttpDigestAuthentication extends AbstractQNameAssertionType { diff --git a/src/XML/sp/HttpsToken.php b/src/XML/sp/HttpsToken.php index 0d9db241..7d1880dc 100644 --- a/src/XML/sp/HttpsToken.php +++ b/src/XML/sp/HttpsToken.php @@ -7,7 +7,7 @@ /** * An HttpsToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HttpsToken extends AbstractTokenAssertionType { diff --git a/src/XML/sp/IncludeTimestamp.php b/src/XML/sp/IncludeTimestamp.php index 7012c452..ad54e4e6 100644 --- a/src/XML/sp/IncludeTimestamp.php +++ b/src/XML/sp/IncludeTimestamp.php @@ -7,7 +7,7 @@ /** * An IncludeTimestamp element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IncludeTimestamp extends AbstractQNameAssertionType { diff --git a/src/XML/sp/IncludeTokenTypeTrait.php b/src/XML/sp/IncludeTokenTypeTrait.php index 52e61eef..c0d2e4a4 100644 --- a/src/XML/sp/IncludeTokenTypeTrait.php +++ b/src/XML/sp/IncludeTokenTypeTrait.php @@ -11,7 +11,7 @@ /** * Trait grouping common functionality for elements that can hold IncludeToken attributes. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait IncludeTokenTypeTrait { diff --git a/src/XML/sp/InclusiveC14N.php b/src/XML/sp/InclusiveC14N.php index 1da447f2..f5b71d68 100644 --- a/src/XML/sp/InclusiveC14N.php +++ b/src/XML/sp/InclusiveC14N.php @@ -7,7 +7,7 @@ /** * An InclusiveC14N element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InclusiveC14N extends AbstractQNameAssertionType { diff --git a/src/XML/sp/InitiatorEncryptionToken.php b/src/XML/sp/InitiatorEncryptionToken.php index cbe395ce..e6177230 100644 --- a/src/XML/sp/InitiatorEncryptionToken.php +++ b/src/XML/sp/InitiatorEncryptionToken.php @@ -7,7 +7,7 @@ /** * An InitiatorEncryptionToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InitiatorEncryptionToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/InitiatorSignatureToken.php b/src/XML/sp/InitiatorSignatureToken.php index d62980d2..de1dd14e 100644 --- a/src/XML/sp/InitiatorSignatureToken.php +++ b/src/XML/sp/InitiatorSignatureToken.php @@ -7,7 +7,7 @@ /** * An InitiatorSignatureToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InitiatorSignatureToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/InitiatorToken.php b/src/XML/sp/InitiatorToken.php index 1a0304cf..77383640 100644 --- a/src/XML/sp/InitiatorToken.php +++ b/src/XML/sp/InitiatorToken.php @@ -7,7 +7,7 @@ /** * An InitiatorToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InitiatorToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/IssuedToken.php b/src/XML/sp/IssuedToken.php index 4122740d..ce349173 100644 --- a/src/XML/sp/IssuedToken.php +++ b/src/XML/sp/IssuedToken.php @@ -7,7 +7,7 @@ /** * An IssuedToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuedToken extends AbstractIssuedTokenType { diff --git a/src/XML/sp/Issuer.php b/src/XML/sp/Issuer.php index 52f07368..738f2c91 100644 --- a/src/XML/sp/Issuer.php +++ b/src/XML/sp/Issuer.php @@ -10,7 +10,7 @@ /** * An Issuer element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Issuer extends AbstractEndpointReferenceType { diff --git a/src/XML/sp/IssuerName.php b/src/XML/sp/IssuerName.php index e2f7eecf..8aa206b6 100644 --- a/src/XML/sp/IssuerName.php +++ b/src/XML/sp/IssuerName.php @@ -9,7 +9,7 @@ /** * An IssuerName element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuerName extends AbstractSpElement { diff --git a/src/XML/sp/KerberosToken.php b/src/XML/sp/KerberosToken.php index 96ee206d..ada494bf 100644 --- a/src/XML/sp/KerberosToken.php +++ b/src/XML/sp/KerberosToken.php @@ -7,7 +7,7 @@ /** * An KerberosToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KerberosToken extends AbstractTokenAssertionType { diff --git a/src/XML/sp/KeyValueToken.php b/src/XML/sp/KeyValueToken.php index 92d2a069..7a4e9f99 100644 --- a/src/XML/sp/KeyValueToken.php +++ b/src/XML/sp/KeyValueToken.php @@ -7,7 +7,7 @@ /** * An KeyValueToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyValueToken extends AbstractKeyValueTokenType { diff --git a/src/XML/sp/Lax.php b/src/XML/sp/Lax.php index 56366e4e..61267830 100644 --- a/src/XML/sp/Lax.php +++ b/src/XML/sp/Lax.php @@ -7,7 +7,7 @@ /** * An Lax element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Lax extends AbstractQNameAssertionType { diff --git a/src/XML/sp/LaxTsFirst.php b/src/XML/sp/LaxTsFirst.php index e99aad63..1814f690 100644 --- a/src/XML/sp/LaxTsFirst.php +++ b/src/XML/sp/LaxTsFirst.php @@ -7,7 +7,7 @@ /** * An LaxTsFirst element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LaxTsFirst extends AbstractQNameAssertionType { diff --git a/src/XML/sp/LaxTsLast.php b/src/XML/sp/LaxTsLast.php index 5c67f829..d75a6dca 100644 --- a/src/XML/sp/LaxTsLast.php +++ b/src/XML/sp/LaxTsLast.php @@ -7,7 +7,7 @@ /** * An LaxTsLast element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LaxTsLast extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Layout.php b/src/XML/sp/Layout.php index 8720e7d3..27561408 100644 --- a/src/XML/sp/Layout.php +++ b/src/XML/sp/Layout.php @@ -7,7 +7,7 @@ /** * A Layout element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Layout extends AbstractNestedPolicyType { diff --git a/src/XML/sp/MustNotSendAmend.php b/src/XML/sp/MustNotSendAmend.php index 3ff1790d..40080411 100644 --- a/src/XML/sp/MustNotSendAmend.php +++ b/src/XML/sp/MustNotSendAmend.php @@ -7,7 +7,7 @@ /** * An MustNotSendAmend element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustNotSendAmend extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustNotSendCancel.php b/src/XML/sp/MustNotSendCancel.php index d0cd00e1..1fcfe615 100644 --- a/src/XML/sp/MustNotSendCancel.php +++ b/src/XML/sp/MustNotSendCancel.php @@ -7,7 +7,7 @@ /** * An MustNotSendCancel element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustNotSendCancel extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustNotSendRenew.php b/src/XML/sp/MustNotSendRenew.php index 1c350f44..cc4c9c29 100644 --- a/src/XML/sp/MustNotSendRenew.php +++ b/src/XML/sp/MustNotSendRenew.php @@ -7,7 +7,7 @@ /** * An MustNotSendRenew element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustNotSendRenew extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportClientChallenge.php b/src/XML/sp/MustSupportClientChallenge.php index fc356cc6..5f87fc3b 100644 --- a/src/XML/sp/MustSupportClientChallenge.php +++ b/src/XML/sp/MustSupportClientChallenge.php @@ -7,7 +7,7 @@ /** * An MustSupportClientChallenge element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportClientChallenge extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportIssuedTokens.php b/src/XML/sp/MustSupportIssuedTokens.php index 5d205ace..59a91f70 100644 --- a/src/XML/sp/MustSupportIssuedTokens.php +++ b/src/XML/sp/MustSupportIssuedTokens.php @@ -7,7 +7,7 @@ /** * An MustSupportIssuedTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportIssuedTokens extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportRefEmbeddedToken.php b/src/XML/sp/MustSupportRefEmbeddedToken.php index ab1f921a..4dc838ec 100644 --- a/src/XML/sp/MustSupportRefEmbeddedToken.php +++ b/src/XML/sp/MustSupportRefEmbeddedToken.php @@ -7,7 +7,7 @@ /** * An MustSupportRefEmbeddedToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefEmbeddedToken extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportRefEncryptedKey.php b/src/XML/sp/MustSupportRefEncryptedKey.php index 64ab663c..44a96cad 100644 --- a/src/XML/sp/MustSupportRefEncryptedKey.php +++ b/src/XML/sp/MustSupportRefEncryptedKey.php @@ -7,7 +7,7 @@ /** * An MustSupportRefEncryptedKey element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefEncryptedKey extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportRefExternalURI.php b/src/XML/sp/MustSupportRefExternalURI.php index 3306cc82..cccf5720 100644 --- a/src/XML/sp/MustSupportRefExternalURI.php +++ b/src/XML/sp/MustSupportRefExternalURI.php @@ -7,7 +7,7 @@ /** * An MustSupportRefExternalURI element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefExternalURI extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportRefIssuerSerial.php b/src/XML/sp/MustSupportRefIssuerSerial.php index 79f564fa..59de8cca 100644 --- a/src/XML/sp/MustSupportRefIssuerSerial.php +++ b/src/XML/sp/MustSupportRefIssuerSerial.php @@ -7,7 +7,7 @@ /** * An MustSupportRefIssuerSerial element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefIssuerSerial extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportRefKeyIdentifier.php b/src/XML/sp/MustSupportRefKeyIdentifier.php index 37c820d2..2cf7ff69 100644 --- a/src/XML/sp/MustSupportRefKeyIdentifier.php +++ b/src/XML/sp/MustSupportRefKeyIdentifier.php @@ -7,7 +7,7 @@ /** * An MustSupportRefKeyIdentifier element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefKeyIdentifier extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportRefThumbprint.php b/src/XML/sp/MustSupportRefThumbprint.php index 71c53ddb..97ca0237 100644 --- a/src/XML/sp/MustSupportRefThumbprint.php +++ b/src/XML/sp/MustSupportRefThumbprint.php @@ -7,7 +7,7 @@ /** * An MustSupportRefThumbprint element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefThumbprint extends AbstractQNameAssertionType { diff --git a/src/XML/sp/MustSupportServerChallenge.php b/src/XML/sp/MustSupportServerChallenge.php index 9e7145db..02dada4a 100644 --- a/src/XML/sp/MustSupportServerChallenge.php +++ b/src/XML/sp/MustSupportServerChallenge.php @@ -7,7 +7,7 @@ /** * An MustSupportServerChallenge element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportServerChallenge extends AbstractQNameAssertionType { diff --git a/src/XML/sp/NoPassword.php b/src/XML/sp/NoPassword.php index fd8bd392..8f3dac75 100644 --- a/src/XML/sp/NoPassword.php +++ b/src/XML/sp/NoPassword.php @@ -7,7 +7,7 @@ /** * An NoPassword element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class NoPassword extends AbstractQNameAssertionType { diff --git a/src/XML/sp/OnlySignEntireHeadersAndBody.php b/src/XML/sp/OnlySignEntireHeadersAndBody.php index f27009f8..a5b26fc8 100644 --- a/src/XML/sp/OnlySignEntireHeadersAndBody.php +++ b/src/XML/sp/OnlySignEntireHeadersAndBody.php @@ -7,7 +7,7 @@ /** * An OnlySignEntireHeadersAndBody element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class OnlySignEntireHeadersAndBody extends AbstractQNameAssertionType { diff --git a/src/XML/sp/ProtectTokens.php b/src/XML/sp/ProtectTokens.php index e02828e2..dc8ecd3b 100644 --- a/src/XML/sp/ProtectTokens.php +++ b/src/XML/sp/ProtectTokens.php @@ -7,7 +7,7 @@ /** * An ProtectTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProtectTokens extends AbstractQNameAssertionType { diff --git a/src/XML/sp/ProtectionToken.php b/src/XML/sp/ProtectionToken.php index 804800e0..c1991131 100644 --- a/src/XML/sp/ProtectionToken.php +++ b/src/XML/sp/ProtectionToken.php @@ -7,7 +7,7 @@ /** * A ProtectionToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProtectionToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/RecipientEncryptionToken.php b/src/XML/sp/RecipientEncryptionToken.php index cb95f181..a50b570f 100644 --- a/src/XML/sp/RecipientEncryptionToken.php +++ b/src/XML/sp/RecipientEncryptionToken.php @@ -7,7 +7,7 @@ /** * A RecipientEncryptionToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RecipientEncryptionToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/RecipientSignatureToken.php b/src/XML/sp/RecipientSignatureToken.php index 94740f5b..f7894a7a 100644 --- a/src/XML/sp/RecipientSignatureToken.php +++ b/src/XML/sp/RecipientSignatureToken.php @@ -7,7 +7,7 @@ /** * A RecipientSignatureToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RecipientSignatureToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/RecipientToken.php b/src/XML/sp/RecipientToken.php index 743605a7..4efcdf7f 100644 --- a/src/XML/sp/RecipientToken.php +++ b/src/XML/sp/RecipientToken.php @@ -7,7 +7,7 @@ /** * A RecipientToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RecipientToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/RelToken.php b/src/XML/sp/RelToken.php index 5fe27394..0084fba2 100644 --- a/src/XML/sp/RelToken.php +++ b/src/XML/sp/RelToken.php @@ -7,7 +7,7 @@ /** * An RelToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RelToken extends AbstractTokenAssertionType { diff --git a/src/XML/sp/RequestSecurityTokenTemplate.php b/src/XML/sp/RequestSecurityTokenTemplate.php index 8d907428..577e62db 100644 --- a/src/XML/sp/RequestSecurityTokenTemplate.php +++ b/src/XML/sp/RequestSecurityTokenTemplate.php @@ -7,7 +7,7 @@ /** * An RequestSecurityTokenTemplate element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenTemplate extends AbstractRequestSecurityTokenTemplateType { diff --git a/src/XML/sp/RequireAppliesTo.php b/src/XML/sp/RequireAppliesTo.php index ebf59698..04d4927f 100644 --- a/src/XML/sp/RequireAppliesTo.php +++ b/src/XML/sp/RequireAppliesTo.php @@ -7,7 +7,7 @@ /** * An RequireAppliesTo element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireAppliesTo extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireClientCertificate.php b/src/XML/sp/RequireClientCertificate.php index 53aed466..5288e54d 100644 --- a/src/XML/sp/RequireClientCertificate.php +++ b/src/XML/sp/RequireClientCertificate.php @@ -7,7 +7,7 @@ /** * An RequireClientCertificate element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireClientCertificate extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireClientEntropy.php b/src/XML/sp/RequireClientEntropy.php index 3d2c6e46..dbf7758e 100644 --- a/src/XML/sp/RequireClientEntropy.php +++ b/src/XML/sp/RequireClientEntropy.php @@ -7,7 +7,7 @@ /** * An RequireClientEntropy element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireClientEntropy extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireDerivedKeys.php b/src/XML/sp/RequireDerivedKeys.php index 5894cb55..44a338f6 100644 --- a/src/XML/sp/RequireDerivedKeys.php +++ b/src/XML/sp/RequireDerivedKeys.php @@ -7,7 +7,7 @@ /** * An RequireDerivedKeys element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireDerivedKeys extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireEmbeddedTokenReference.php b/src/XML/sp/RequireEmbeddedTokenReference.php index 26dab06d..582ee75a 100644 --- a/src/XML/sp/RequireEmbeddedTokenReference.php +++ b/src/XML/sp/RequireEmbeddedTokenReference.php @@ -7,7 +7,7 @@ /** * An RequireEmbeddedTokenReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireEmbeddedTokenReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireExplicitDerivedKeys.php b/src/XML/sp/RequireExplicitDerivedKeys.php index 12509b99..2a2365f0 100644 --- a/src/XML/sp/RequireExplicitDerivedKeys.php +++ b/src/XML/sp/RequireExplicitDerivedKeys.php @@ -7,7 +7,7 @@ /** * An RequireExplicitDerivedKeys element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireExplicitDerivedKeys extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireExternalReference.php b/src/XML/sp/RequireExternalReference.php index 8837e961..dea4ad85 100644 --- a/src/XML/sp/RequireExternalReference.php +++ b/src/XML/sp/RequireExternalReference.php @@ -7,7 +7,7 @@ /** * An RequireExternalReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireExternalReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireExternalUriReference.php b/src/XML/sp/RequireExternalUriReference.php index 378f58af..b5202d0c 100644 --- a/src/XML/sp/RequireExternalUriReference.php +++ b/src/XML/sp/RequireExternalUriReference.php @@ -7,7 +7,7 @@ /** * An RequireExternalUriReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireExternalUriReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireImpliedDerivedKeys.php b/src/XML/sp/RequireImpliedDerivedKeys.php index 197684f5..9a2bcfca 100644 --- a/src/XML/sp/RequireImpliedDerivedKeys.php +++ b/src/XML/sp/RequireImpliedDerivedKeys.php @@ -7,7 +7,7 @@ /** * An RequireImpliedDerivedKeys element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireImpliedDerivedKeys extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireInternalReference.php b/src/XML/sp/RequireInternalReference.php index 8511b428..65be4b61 100644 --- a/src/XML/sp/RequireInternalReference.php +++ b/src/XML/sp/RequireInternalReference.php @@ -7,7 +7,7 @@ /** * An RequireInternalReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireInternalReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireIssuerSerialReference.php b/src/XML/sp/RequireIssuerSerialReference.php index 83d907b4..5726a119 100644 --- a/src/XML/sp/RequireIssuerSerialReference.php +++ b/src/XML/sp/RequireIssuerSerialReference.php @@ -7,7 +7,7 @@ /** * An RequireIssuerSerialReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireIssuerSerialReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireKeyIdentifierReference.php b/src/XML/sp/RequireKeyIdentifierReference.php index 525f3461..2694e3ae 100644 --- a/src/XML/sp/RequireKeyIdentifierReference.php +++ b/src/XML/sp/RequireKeyIdentifierReference.php @@ -7,7 +7,7 @@ /** * An RequireKeyIdentifierReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireKeyIdentifierReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireRequestSecurityTokenCollection.php b/src/XML/sp/RequireRequestSecurityTokenCollection.php index 22a9f936..67f404a6 100644 --- a/src/XML/sp/RequireRequestSecurityTokenCollection.php +++ b/src/XML/sp/RequireRequestSecurityTokenCollection.php @@ -7,7 +7,7 @@ /** * An RequireRequestSecurityTokenCollection element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireRequestSecurityTokenCollection extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireServerEntropy.php b/src/XML/sp/RequireServerEntropy.php index 192631be..4febe0ad 100644 --- a/src/XML/sp/RequireServerEntropy.php +++ b/src/XML/sp/RequireServerEntropy.php @@ -7,7 +7,7 @@ /** * An RequireServerEntropy element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireServerEntropy extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireSignatureConfirmation.php b/src/XML/sp/RequireSignatureConfirmation.php index d19a7de4..ff976014 100644 --- a/src/XML/sp/RequireSignatureConfirmation.php +++ b/src/XML/sp/RequireSignatureConfirmation.php @@ -7,7 +7,7 @@ /** * An RequireSignatureConfirmation element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireSignatureConfirmation extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequireThumbprintReference.php b/src/XML/sp/RequireThumbprintReference.php index fd83fb13..9099c534 100644 --- a/src/XML/sp/RequireThumbprintReference.php +++ b/src/XML/sp/RequireThumbprintReference.php @@ -7,7 +7,7 @@ /** * An RequireThumbprintReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireThumbprintReference extends AbstractQNameAssertionType { diff --git a/src/XML/sp/RequiredElements.php b/src/XML/sp/RequiredElements.php index 9ff6909f..51d5e915 100644 --- a/src/XML/sp/RequiredElements.php +++ b/src/XML/sp/RequiredElements.php @@ -7,7 +7,7 @@ /** * An RequiredElements element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequiredElements extends AbstractSerElementsType { diff --git a/src/XML/sp/RequiredParts.php b/src/XML/sp/RequiredParts.php index 95e87d2f..1392019d 100644 --- a/src/XML/sp/RequiredParts.php +++ b/src/XML/sp/RequiredParts.php @@ -7,7 +7,7 @@ /** * An RequiredParts element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequiredParts extends AbstractReqPartsType { diff --git a/src/XML/sp/RsaKeyValue.php b/src/XML/sp/RsaKeyValue.php index e1e6f2aa..34286d1d 100644 --- a/src/XML/sp/RsaKeyValue.php +++ b/src/XML/sp/RsaKeyValue.php @@ -7,7 +7,7 @@ /** * An RsaKeyValue element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RsaKeyValue extends AbstractQNameAssertionType { diff --git a/src/XML/sp/SC13SecurityContextToken.php b/src/XML/sp/SC13SecurityContextToken.php index 3487f0c9..d68e75cd 100644 --- a/src/XML/sp/SC13SecurityContextToken.php +++ b/src/XML/sp/SC13SecurityContextToken.php @@ -7,7 +7,7 @@ /** * An SC13SecurityContextToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SC13SecurityContextToken extends AbstractQNameAssertionType { diff --git a/src/XML/sp/SOAPNormalization10.php b/src/XML/sp/SOAPNormalization10.php index aa7db375..aa60bbf9 100644 --- a/src/XML/sp/SOAPNormalization10.php +++ b/src/XML/sp/SOAPNormalization10.php @@ -7,7 +7,7 @@ /** * An SOAPNormalization10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SOAPNormalization10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/STRTransform10.php b/src/XML/sp/STRTransform10.php index bf3ed174..b956aacc 100644 --- a/src/XML/sp/STRTransform10.php +++ b/src/XML/sp/STRTransform10.php @@ -7,7 +7,7 @@ /** * An STRTransform10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class STRTransform10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/SamlToken.php b/src/XML/sp/SamlToken.php index bc582ef8..bbbce7fc 100644 --- a/src/XML/sp/SamlToken.php +++ b/src/XML/sp/SamlToken.php @@ -7,7 +7,7 @@ /** * An SamlToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SamlToken extends AbstractTokenAssertionType { diff --git a/src/XML/sp/SecureConversationToken.php b/src/XML/sp/SecureConversationToken.php index 01c87f4f..dfce70b0 100644 --- a/src/XML/sp/SecureConversationToken.php +++ b/src/XML/sp/SecureConversationToken.php @@ -7,7 +7,7 @@ /** * An SecureConversationToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecureConversationToken extends AbstractSecureConversationTokenType { diff --git a/src/XML/sp/SecurityContextToken.php b/src/XML/sp/SecurityContextToken.php index d0e8d0f4..7a635c5c 100644 --- a/src/XML/sp/SecurityContextToken.php +++ b/src/XML/sp/SecurityContextToken.php @@ -7,7 +7,7 @@ /** * An SecurityContextToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityContextToken extends AbstractTokenAssertionType { diff --git a/src/XML/sp/SignatureToken.php b/src/XML/sp/SignatureToken.php index 0a75353b..1b5e21e0 100644 --- a/src/XML/sp/SignatureToken.php +++ b/src/XML/sp/SignatureToken.php @@ -7,7 +7,7 @@ /** * A SignatureToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignatureToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/SignedElements.php b/src/XML/sp/SignedElements.php index 78360430..a673bd55 100644 --- a/src/XML/sp/SignedElements.php +++ b/src/XML/sp/SignedElements.php @@ -7,7 +7,7 @@ /** * An SignedElements element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedElements extends AbstractSerElementsType { diff --git a/src/XML/sp/SignedEncryptedSupportingTokens.php b/src/XML/sp/SignedEncryptedSupportingTokens.php index 70a3e99e..86cb3c70 100644 --- a/src/XML/sp/SignedEncryptedSupportingTokens.php +++ b/src/XML/sp/SignedEncryptedSupportingTokens.php @@ -7,7 +7,7 @@ /** * A SignedEncryptedSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedEncryptedSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/SignedEndorsingEncryptedSupportingTokens.php b/src/XML/sp/SignedEndorsingEncryptedSupportingTokens.php index 42c35ffd..bffac25f 100644 --- a/src/XML/sp/SignedEndorsingEncryptedSupportingTokens.php +++ b/src/XML/sp/SignedEndorsingEncryptedSupportingTokens.php @@ -7,7 +7,7 @@ /** * A SignedEndorsingEncryptedSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedEndorsingEncryptedSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/SignedEndorsingSupportingTokens.php b/src/XML/sp/SignedEndorsingSupportingTokens.php index 1fdcbe82..fd964794 100644 --- a/src/XML/sp/SignedEndorsingSupportingTokens.php +++ b/src/XML/sp/SignedEndorsingSupportingTokens.php @@ -7,7 +7,7 @@ /** * A SignedEndorsingSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedEndorsingSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/SignedParts.php b/src/XML/sp/SignedParts.php index 1a53de81..dca5ccd8 100644 --- a/src/XML/sp/SignedParts.php +++ b/src/XML/sp/SignedParts.php @@ -7,7 +7,7 @@ /** * An SignedParts element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedParts extends AbstractSePartsType { diff --git a/src/XML/sp/SignedSupportingTokens.php b/src/XML/sp/SignedSupportingTokens.php index 8d170e19..fa5ea598 100644 --- a/src/XML/sp/SignedSupportingTokens.php +++ b/src/XML/sp/SignedSupportingTokens.php @@ -7,7 +7,7 @@ /** * A SignedSupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedSupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/SpnegoContextToken.php b/src/XML/sp/SpnegoContextToken.php index 2ff493d7..932a38d4 100644 --- a/src/XML/sp/SpnegoContextToken.php +++ b/src/XML/sp/SpnegoContextToken.php @@ -7,7 +7,7 @@ /** * An SpnegoContextToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SpnegoContextToken extends AbstractSpnegoContextTokenType { diff --git a/src/XML/sp/Strict.php b/src/XML/sp/Strict.php index ce21c7da..5cc7254e 100644 --- a/src/XML/sp/Strict.php +++ b/src/XML/sp/Strict.php @@ -7,7 +7,7 @@ /** * An Strict element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Strict extends AbstractQNameAssertionType { diff --git a/src/XML/sp/SupportingTokens.php b/src/XML/sp/SupportingTokens.php index 05342c7b..13304855 100644 --- a/src/XML/sp/SupportingTokens.php +++ b/src/XML/sp/SupportingTokens.php @@ -7,7 +7,7 @@ /** * A SupportingTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SupportingTokens extends AbstractNestedPolicyType { diff --git a/src/XML/sp/SymmetricBinding.php b/src/XML/sp/SymmetricBinding.php index bf3b8893..ab64b3b0 100644 --- a/src/XML/sp/SymmetricBinding.php +++ b/src/XML/sp/SymmetricBinding.php @@ -7,7 +7,7 @@ /** * A SymmetricBinding element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SymmetricBinding extends AbstractNestedPolicyType { diff --git a/src/XML/sp/TransportBinding.php b/src/XML/sp/TransportBinding.php index c5bf7533..285af7b7 100644 --- a/src/XML/sp/TransportBinding.php +++ b/src/XML/sp/TransportBinding.php @@ -7,7 +7,7 @@ /** * A TransportBinding element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TransportBinding extends AbstractNestedPolicyType { diff --git a/src/XML/sp/TransportToken.php b/src/XML/sp/TransportToken.php index 60e3b6e1..be5099de 100644 --- a/src/XML/sp/TransportToken.php +++ b/src/XML/sp/TransportToken.php @@ -7,7 +7,7 @@ /** * A TransportToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TransportToken extends AbstractNestedPolicyType { diff --git a/src/XML/sp/TripleDes.php b/src/XML/sp/TripleDes.php index 4fcd304e..11959176 100644 --- a/src/XML/sp/TripleDes.php +++ b/src/XML/sp/TripleDes.php @@ -7,7 +7,7 @@ /** * An TripleDes element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDes extends AbstractQNameAssertionType { diff --git a/src/XML/sp/TripleDesRsa15.php b/src/XML/sp/TripleDesRsa15.php index ae36520e..d87e45d9 100644 --- a/src/XML/sp/TripleDesRsa15.php +++ b/src/XML/sp/TripleDesRsa15.php @@ -7,7 +7,7 @@ /** * An TripleDesRsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesRsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/TripleDesSha256.php b/src/XML/sp/TripleDesSha256.php index a12357ee..63332a4e 100644 --- a/src/XML/sp/TripleDesSha256.php +++ b/src/XML/sp/TripleDesSha256.php @@ -7,7 +7,7 @@ /** * An TripleDesSha256 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesSha256 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/TripleDesSha256Rsa15.php b/src/XML/sp/TripleDesSha256Rsa15.php index 09dc2a58..7a26b753 100644 --- a/src/XML/sp/TripleDesSha256Rsa15.php +++ b/src/XML/sp/TripleDesSha256Rsa15.php @@ -7,7 +7,7 @@ /** * An TripleDesSha256Rsa15 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesSha256Rsa15 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/Trust13.php b/src/XML/sp/Trust13.php index 7bcc6a2a..29803694 100644 --- a/src/XML/sp/Trust13.php +++ b/src/XML/sp/Trust13.php @@ -7,7 +7,7 @@ /** * A Trust13 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Trust13 extends AbstractNestedPolicyType { diff --git a/src/XML/sp/UsernameToken.php b/src/XML/sp/UsernameToken.php index fc90b80e..51cff2cb 100644 --- a/src/XML/sp/UsernameToken.php +++ b/src/XML/sp/UsernameToken.php @@ -7,7 +7,7 @@ /** * An UsernameToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UsernameToken extends AbstractTokenAssertionType { diff --git a/src/XML/sp/Wss10.php b/src/XML/sp/Wss10.php index 09d4f370..77d3f470 100644 --- a/src/XML/sp/Wss10.php +++ b/src/XML/sp/Wss10.php @@ -7,7 +7,7 @@ /** * A Wss10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Wss10 extends AbstractNestedPolicyType { diff --git a/src/XML/sp/Wss11.php b/src/XML/sp/Wss11.php index e56fe9ae..fdf7be45 100644 --- a/src/XML/sp/Wss11.php +++ b/src/XML/sp/Wss11.php @@ -7,7 +7,7 @@ /** * A Wss11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Wss11 extends AbstractNestedPolicyType { diff --git a/src/XML/sp/WssGssKerberosV5ApReqToken11.php b/src/XML/sp/WssGssKerberosV5ApReqToken11.php index 00f15e60..229445c9 100644 --- a/src/XML/sp/WssGssKerberosV5ApReqToken11.php +++ b/src/XML/sp/WssGssKerberosV5ApReqToken11.php @@ -7,7 +7,7 @@ /** * An WssGssKerberosV5ApReqToken11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssGssKerberosV5ApReqToken11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssKerberosV5ApReqToken11.php b/src/XML/sp/WssKerberosV5ApReqToken11.php index 889a06c0..539d85ca 100644 --- a/src/XML/sp/WssKerberosV5ApReqToken11.php +++ b/src/XML/sp/WssKerberosV5ApReqToken11.php @@ -7,7 +7,7 @@ /** * An WssKerberosV5ApReqToken11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssKerberosV5ApReqToken11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssRelV10Token10.php b/src/XML/sp/WssRelV10Token10.php index 8dec12b8..57f400e6 100644 --- a/src/XML/sp/WssRelV10Token10.php +++ b/src/XML/sp/WssRelV10Token10.php @@ -7,7 +7,7 @@ /** * An WssRelV10Token10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV10Token10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssRelV10Token11.php b/src/XML/sp/WssRelV10Token11.php index 1dc24303..59faa26d 100644 --- a/src/XML/sp/WssRelV10Token11.php +++ b/src/XML/sp/WssRelV10Token11.php @@ -7,7 +7,7 @@ /** * An WssRelV10Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV10Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssRelV20Token10.php b/src/XML/sp/WssRelV20Token10.php index a116b5b8..1030298d 100644 --- a/src/XML/sp/WssRelV20Token10.php +++ b/src/XML/sp/WssRelV20Token10.php @@ -7,7 +7,7 @@ /** * An WssRelV20Token10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV20Token10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssRelV20Token11.php b/src/XML/sp/WssRelV20Token11.php index 14517b6e..548e93bb 100644 --- a/src/XML/sp/WssRelV20Token11.php +++ b/src/XML/sp/WssRelV20Token11.php @@ -7,7 +7,7 @@ /** * An WssRelV20Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV20Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssSamlV11Token10.php b/src/XML/sp/WssSamlV11Token10.php index a4245549..f69db5c1 100644 --- a/src/XML/sp/WssSamlV11Token10.php +++ b/src/XML/sp/WssSamlV11Token10.php @@ -7,7 +7,7 @@ /** * An WssSamlV11Token10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssSamlV11Token10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssSamlV11Token11.php b/src/XML/sp/WssSamlV11Token11.php index 970d40ac..c272870b 100644 --- a/src/XML/sp/WssSamlV11Token11.php +++ b/src/XML/sp/WssSamlV11Token11.php @@ -7,7 +7,7 @@ /** * An WssSamlV11Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssSamlV11Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssSamlV20Token11.php b/src/XML/sp/WssSamlV20Token11.php index e2193263..13d4b132 100644 --- a/src/XML/sp/WssSamlV20Token11.php +++ b/src/XML/sp/WssSamlV20Token11.php @@ -7,7 +7,7 @@ /** * An WssSamlV20Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssSamlV20Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssUsernameToken10.php b/src/XML/sp/WssUsernameToken10.php index 98152fb4..8dc91fab 100644 --- a/src/XML/sp/WssUsernameToken10.php +++ b/src/XML/sp/WssUsernameToken10.php @@ -7,7 +7,7 @@ /** * An WssUsernameToken10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssUsernameToken10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssUsernameToken11.php b/src/XML/sp/WssUsernameToken11.php index e9a5f802..518b41ef 100644 --- a/src/XML/sp/WssUsernameToken11.php +++ b/src/XML/sp/WssUsernameToken11.php @@ -7,7 +7,7 @@ /** * An WssUsernameToken11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssUsernameToken11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509Pkcs7Token10.php b/src/XML/sp/WssX509Pkcs7Token10.php index d3e34516..1396a66e 100644 --- a/src/XML/sp/WssX509Pkcs7Token10.php +++ b/src/XML/sp/WssX509Pkcs7Token10.php @@ -7,7 +7,7 @@ /** * An WssX509Pkcs7Token10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509Pkcs7Token10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509Pkcs7Token11.php b/src/XML/sp/WssX509Pkcs7Token11.php index 8f312d5a..d05596ff 100644 --- a/src/XML/sp/WssX509Pkcs7Token11.php +++ b/src/XML/sp/WssX509Pkcs7Token11.php @@ -7,7 +7,7 @@ /** * An WssX509Pkcs7Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509Pkcs7Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509PkiPathV1Token10.php b/src/XML/sp/WssX509PkiPathV1Token10.php index 7a92e072..1a286df6 100644 --- a/src/XML/sp/WssX509PkiPathV1Token10.php +++ b/src/XML/sp/WssX509PkiPathV1Token10.php @@ -7,7 +7,7 @@ /** * An WssX509PkiPathV1Token10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509PkiPathV1Token10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509PkiPathV1Token11.php b/src/XML/sp/WssX509PkiPathV1Token11.php index efe405cc..b2792d46 100644 --- a/src/XML/sp/WssX509PkiPathV1Token11.php +++ b/src/XML/sp/WssX509PkiPathV1Token11.php @@ -7,7 +7,7 @@ /** * An WssX509PkiPathV1Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509PkiPathV1Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509V1Token11.php b/src/XML/sp/WssX509V1Token11.php index b9f5a04a..cb84bd64 100644 --- a/src/XML/sp/WssX509V1Token11.php +++ b/src/XML/sp/WssX509V1Token11.php @@ -7,7 +7,7 @@ /** * An WssX509V1Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509V1Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509V3Token10.php b/src/XML/sp/WssX509V3Token10.php index 880f9ec6..939a59ec 100644 --- a/src/XML/sp/WssX509V3Token10.php +++ b/src/XML/sp/WssX509V3Token10.php @@ -7,7 +7,7 @@ /** * An WssX509V3Token10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509V3Token10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/WssX509V3Token11.php b/src/XML/sp/WssX509V3Token11.php index 158e8b37..bed87988 100644 --- a/src/XML/sp/WssX509V3Token11.php +++ b/src/XML/sp/WssX509V3Token11.php @@ -7,7 +7,7 @@ /** * An WssX509V3Token11 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509V3Token11 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/X509Token.php b/src/XML/sp/X509Token.php index 10f01d26..5aa001b2 100644 --- a/src/XML/sp/X509Token.php +++ b/src/XML/sp/X509Token.php @@ -7,7 +7,7 @@ /** * An X509Token element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class X509Token extends AbstractTokenAssertionType { diff --git a/src/XML/sp/XPath.php b/src/XML/sp/XPath.php index 93e77879..e11de052 100644 --- a/src/XML/sp/XPath.php +++ b/src/XML/sp/XPath.php @@ -13,7 +13,7 @@ /** * An XPath element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class XPath extends AbstractSpElement { diff --git a/src/XML/sp/XPath10.php b/src/XML/sp/XPath10.php index fdc26a83..d000327c 100644 --- a/src/XML/sp/XPath10.php +++ b/src/XML/sp/XPath10.php @@ -7,7 +7,7 @@ /** * An XPath10 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class XPath10 extends AbstractQNameAssertionType { diff --git a/src/XML/sp/XPathFilter20.php b/src/XML/sp/XPathFilter20.php index e357f0de..075f9cdf 100644 --- a/src/XML/sp/XPathFilter20.php +++ b/src/XML/sp/XPathFilter20.php @@ -7,7 +7,7 @@ /** * An XPathFilter20 element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class XPathFilter20 extends AbstractQNameAssertionType { diff --git a/src/XML/wsa/AbstractAttributedLongType.php b/src/XML/wsa/AbstractAttributedLongType.php index add91e88..e97eb9bc 100644 --- a/src/XML/wsa/AbstractAttributedLongType.php +++ b/src/XML/wsa/AbstractAttributedLongType.php @@ -18,7 +18,7 @@ * You can extend the class without extending the constructor. Then you can use the methods available and the * class will generate an element with the same name as the extending class (e.g. \SimpleSAML\WSSecurity\wsa\Address). * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributedLongType extends AbstractWsaElement { diff --git a/src/XML/wsa/AbstractAttributedQNameType.php b/src/XML/wsa/AbstractAttributedQNameType.php index 76d98c5f..a6e40ec8 100644 --- a/src/XML/wsa/AbstractAttributedQNameType.php +++ b/src/XML/wsa/AbstractAttributedQNameType.php @@ -18,7 +18,7 @@ * will generate an element with the same name as the extending class * (e.g. \SimpleSAML\WSSecurity\wsa\ProblemHeaderQName). * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributedQNameType extends AbstractWsaElement { diff --git a/src/XML/wsa/AbstractAttributedURIType.php b/src/XML/wsa/AbstractAttributedURIType.php index a9a70dd4..14955ed1 100644 --- a/src/XML/wsa/AbstractAttributedURIType.php +++ b/src/XML/wsa/AbstractAttributedURIType.php @@ -17,7 +17,7 @@ * You can extend the class without extending the constructor. Then you can use the methods available and the * class will generate an element with the same name as the extending class (e.g. \SimpleSAML\WSSecurity\wsa\Address). * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributedURIType extends AbstractWsaElement { diff --git a/src/XML/wsa/AbstractEndpointReferenceType.php b/src/XML/wsa/AbstractEndpointReferenceType.php index c31cfc1c..8f6d22e7 100644 --- a/src/XML/wsa/AbstractEndpointReferenceType.php +++ b/src/XML/wsa/AbstractEndpointReferenceType.php @@ -25,7 +25,7 @@ * and the class will generate an element with the same name as the extending class * (e.g. \SimpleSAML\WSSecurity\wsa\EndpointReference). * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEndpointReferenceType extends AbstractWsaElement { diff --git a/src/XML/wsa/AbstractProblemActionType.php b/src/XML/wsa/AbstractProblemActionType.php index 85eaf03f..3482ccb3 100644 --- a/src/XML/wsa/AbstractProblemActionType.php +++ b/src/XML/wsa/AbstractProblemActionType.php @@ -15,7 +15,7 @@ * will generate an element with the same name as the extending class * (e.g. \SimpleSAML\WSSecurity\wsa\ProblemAction). * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractProblemActionType extends AbstractWsaElement { diff --git a/src/XML/wsa/AbstractWsaElement.php b/src/XML/wsa/AbstractWsaElement.php index 1ec8738e..aa60a723 100644 --- a/src/XML/wsa/AbstractWsaElement.php +++ b/src/XML/wsa/AbstractWsaElement.php @@ -10,7 +10,7 @@ /** * Abstract class to be implemented by all the classes in this namespace * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWsaElement extends AbstractElement { diff --git a/src/XML/wsa/Action.php b/src/XML/wsa/Action.php index 11dbabff..cf7d20f8 100644 --- a/src/XML/wsa/Action.php +++ b/src/XML/wsa/Action.php @@ -7,7 +7,7 @@ /** * An attributed URI * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Action extends AbstractAttributedURIType { diff --git a/src/XML/wsa/Address.php b/src/XML/wsa/Address.php index 7222502e..9a5b8b9b 100644 --- a/src/XML/wsa/Address.php +++ b/src/XML/wsa/Address.php @@ -7,7 +7,7 @@ /** * An attributed URI * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Address extends AbstractAttributedURIType { diff --git a/src/XML/wsa/EndpointReference.php b/src/XML/wsa/EndpointReference.php index eb2841a1..f7efad82 100644 --- a/src/XML/wsa/EndpointReference.php +++ b/src/XML/wsa/EndpointReference.php @@ -7,7 +7,7 @@ /** * An endpoint reference * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EndpointReference extends AbstractEndpointReferenceType { diff --git a/src/XML/wsa/FaultTo.php b/src/XML/wsa/FaultTo.php index 052c61a8..0ecb0a21 100644 --- a/src/XML/wsa/FaultTo.php +++ b/src/XML/wsa/FaultTo.php @@ -7,7 +7,7 @@ /** * An endpoint reference * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FaultTo extends AbstractEndpointReferenceType { diff --git a/src/XML/wsa/From.php b/src/XML/wsa/From.php index 887b8535..db5d3f35 100644 --- a/src/XML/wsa/From.php +++ b/src/XML/wsa/From.php @@ -7,7 +7,7 @@ /** * An endpoint reference * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class From extends AbstractEndpointReferenceType { diff --git a/src/XML/wsa/MessageID.php b/src/XML/wsa/MessageID.php index e836d20e..2c234ee9 100644 --- a/src/XML/wsa/MessageID.php +++ b/src/XML/wsa/MessageID.php @@ -7,7 +7,7 @@ /** * An attributed URI * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MessageID extends AbstractAttributedURIType { diff --git a/src/XML/wsa/Metadata.php b/src/XML/wsa/Metadata.php index 8ec7310d..3c4eab7d 100644 --- a/src/XML/wsa/Metadata.php +++ b/src/XML/wsa/Metadata.php @@ -15,7 +15,7 @@ /** * Class representing a wsa:Metadata element. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Metadata extends AbstractWsaElement { diff --git a/src/XML/wsa/ProblemAction.php b/src/XML/wsa/ProblemAction.php index 928f514a..93a714b2 100644 --- a/src/XML/wsa/ProblemAction.php +++ b/src/XML/wsa/ProblemAction.php @@ -14,7 +14,7 @@ /** * A ProblemAction * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProblemAction extends AbstractProblemActionType { diff --git a/src/XML/wsa/ProblemHeaderQName.php b/src/XML/wsa/ProblemHeaderQName.php index cbb5b76e..9fbe304a 100644 --- a/src/XML/wsa/ProblemHeaderQName.php +++ b/src/XML/wsa/ProblemHeaderQName.php @@ -7,7 +7,7 @@ /** * An attributed QName * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProblemHeaderQName extends AbstractAttributedQNameType { diff --git a/src/XML/wsa/ProblemIRI.php b/src/XML/wsa/ProblemIRI.php index 4a2325a6..06379d91 100644 --- a/src/XML/wsa/ProblemIRI.php +++ b/src/XML/wsa/ProblemIRI.php @@ -7,7 +7,7 @@ /** * An attributed URI * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProblemIRI extends AbstractAttributedURIType { diff --git a/src/XML/wsa/ReferenceParameters.php b/src/XML/wsa/ReferenceParameters.php index b9aae631..c4e1b7da 100644 --- a/src/XML/wsa/ReferenceParameters.php +++ b/src/XML/wsa/ReferenceParameters.php @@ -15,7 +15,7 @@ /** * Class representing a wsa:ReferenceParameters element. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceParameters extends AbstractWsaElement { diff --git a/src/XML/wsa/RelatesTo.php b/src/XML/wsa/RelatesTo.php index 14c5710f..637b5f8c 100644 --- a/src/XML/wsa/RelatesTo.php +++ b/src/XML/wsa/RelatesTo.php @@ -16,7 +16,7 @@ /** * Class representing a wsa:RelatesTo element. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RelatesTo extends AbstractWsaElement { diff --git a/src/XML/wsa/ReplyTo.php b/src/XML/wsa/ReplyTo.php index 788a49d6..c8551ac1 100644 --- a/src/XML/wsa/ReplyTo.php +++ b/src/XML/wsa/ReplyTo.php @@ -7,7 +7,7 @@ /** * An endpoint reference * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReplyTo extends AbstractEndpointReferenceType { diff --git a/src/XML/wsa/RetryAfter.php b/src/XML/wsa/RetryAfter.php index 02050d86..09662585 100644 --- a/src/XML/wsa/RetryAfter.php +++ b/src/XML/wsa/RetryAfter.php @@ -7,7 +7,7 @@ /** * An attributed long * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RetryAfter extends AbstractAttributedLongType { diff --git a/src/XML/wsa/SoapAction.php b/src/XML/wsa/SoapAction.php index ad461678..008f945f 100644 --- a/src/XML/wsa/SoapAction.php +++ b/src/XML/wsa/SoapAction.php @@ -10,7 +10,7 @@ use SimpleSAML\XML\URIElementTrait; /** - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SoapAction extends AbstractWsaElement { diff --git a/src/XML/wsa/To.php b/src/XML/wsa/To.php index 5e29dfea..fa723812 100644 --- a/src/XML/wsa/To.php +++ b/src/XML/wsa/To.php @@ -7,7 +7,7 @@ /** * An attributed URI * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class To extends AbstractAttributedURIType { diff --git a/src/XML/wsp/AbstractOperatorContentType.php b/src/XML/wsp/AbstractOperatorContentType.php index fcee7f98..62776727 100644 --- a/src/XML/wsp/AbstractOperatorContentType.php +++ b/src/XML/wsp/AbstractOperatorContentType.php @@ -16,7 +16,7 @@ /** * Class representing a wsp:OperatorContentType element. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractOperatorContentType extends AbstractWspElement { diff --git a/src/XML/wsp/AbstractWspElement.php b/src/XML/wsp/AbstractWspElement.php index 9564ae36..36c83eb8 100644 --- a/src/XML/wsp/AbstractWspElement.php +++ b/src/XML/wsp/AbstractWspElement.php @@ -10,7 +10,7 @@ /** * Abstract class to be implemented by all the classes in this namespace * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWspElement extends AbstractElement { diff --git a/src/XML/wsp/All.php b/src/XML/wsp/All.php index b0cfbf92..99dbfbef 100644 --- a/src/XML/wsp/All.php +++ b/src/XML/wsp/All.php @@ -7,7 +7,7 @@ /** * Class defining the All element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class All extends AbstractOperatorContentType { diff --git a/src/XML/wsp/AppliesTo.php b/src/XML/wsp/AppliesTo.php index 62ce8602..0b2af5b0 100644 --- a/src/XML/wsp/AppliesTo.php +++ b/src/XML/wsp/AppliesTo.php @@ -15,7 +15,7 @@ /** * Class representing a wsp:AppliesTo element. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AppliesTo extends AbstractWspElement { diff --git a/src/XML/wsp/ExactlyOne.php b/src/XML/wsp/ExactlyOne.php index e4f2ac67..2d4c3014 100644 --- a/src/XML/wsp/ExactlyOne.php +++ b/src/XML/wsp/ExactlyOne.php @@ -7,7 +7,7 @@ /** * Class defining the ExactlyOne element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ExactlyOne extends AbstractOperatorContentType { diff --git a/src/XML/wsp/OptionalTrait.php b/src/XML/wsp/OptionalTrait.php index d6236d02..b194a26e 100644 --- a/src/XML/wsp/OptionalTrait.php +++ b/src/XML/wsp/OptionalTrait.php @@ -7,7 +7,7 @@ /** * Trait grouping common functionality for elements that can hold an Optional attribute. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait OptionalTrait { diff --git a/src/XML/wsp/Policy.php b/src/XML/wsp/Policy.php index 68604013..4414a9ec 100644 --- a/src/XML/wsp/Policy.php +++ b/src/XML/wsp/Policy.php @@ -16,7 +16,7 @@ /** * Class defining the Policy element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Policy extends AbstractOperatorContentType { diff --git a/src/XML/wsp/PolicyAttachment.php b/src/XML/wsp/PolicyAttachment.php index 17b9acc3..4cbab15b 100644 --- a/src/XML/wsp/PolicyAttachment.php +++ b/src/XML/wsp/PolicyAttachment.php @@ -24,7 +24,7 @@ /** * Class representing a wsp:PolicyAttachment element. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PolicyAttachment extends AbstractWspElement { diff --git a/src/XML/wsp/PolicyReference.php b/src/XML/wsp/PolicyReference.php index a3e5a854..bafd2696 100644 --- a/src/XML/wsp/PolicyReference.php +++ b/src/XML/wsp/PolicyReference.php @@ -16,7 +16,7 @@ /** * Class defining the PolicyReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PolicyReference extends AbstractWspElement { diff --git a/src/XML/wsp/PolicyURIsTrait.php b/src/XML/wsp/PolicyURIsTrait.php index 2d1ef778..33d16157 100644 --- a/src/XML/wsp/PolicyURIsTrait.php +++ b/src/XML/wsp/PolicyURIsTrait.php @@ -9,7 +9,7 @@ /** * Trait grouping common functionality for elements that can hold a PolicyURIs attribute. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait PolicyURIsTrait { diff --git a/src/XML/wsse/AbstractAttributedString.php b/src/XML/wsse/AbstractAttributedString.php index 8e659eef..f0b1c69e 100644 --- a/src/XML/wsse/AbstractAttributedString.php +++ b/src/XML/wsse/AbstractAttributedString.php @@ -18,7 +18,7 @@ /** * Abstract class defining the AttributedString type * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributedString extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractBinarySecurityTokenType.php b/src/XML/wsse/AbstractBinarySecurityTokenType.php index 80240add..e6d173cd 100644 --- a/src/XML/wsse/AbstractBinarySecurityTokenType.php +++ b/src/XML/wsse/AbstractBinarySecurityTokenType.php @@ -14,7 +14,7 @@ /** * Class defining the BinarySecurityTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractBinarySecurityTokenType extends AbstractEncodedString { diff --git a/src/XML/wsse/AbstractEmbeddedType.php b/src/XML/wsse/AbstractEmbeddedType.php index 62cb4d38..2fa00239 100644 --- a/src/XML/wsse/AbstractEmbeddedType.php +++ b/src/XML/wsse/AbstractEmbeddedType.php @@ -16,7 +16,7 @@ /** * Class defining the EmbeddedType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEmbeddedType extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractEncodedString.php b/src/XML/wsse/AbstractEncodedString.php index 9d2aa8fd..fe518565 100644 --- a/src/XML/wsse/AbstractEncodedString.php +++ b/src/XML/wsse/AbstractEncodedString.php @@ -12,7 +12,7 @@ /** * Abstract class defining the EncodedString type * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEncodedString extends AbstractAttributedString { diff --git a/src/XML/wsse/AbstractKeyIdentifierType.php b/src/XML/wsse/AbstractKeyIdentifierType.php index 39278f1c..c76343c3 100644 --- a/src/XML/wsse/AbstractKeyIdentifierType.php +++ b/src/XML/wsse/AbstractKeyIdentifierType.php @@ -13,7 +13,7 @@ /** * Class defining the KeyIdentifierType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractKeyIdentifierType extends AbstractEncodedString { diff --git a/src/XML/wsse/AbstractPasswordString.php b/src/XML/wsse/AbstractPasswordString.php index f4cbacba..33e541a4 100644 --- a/src/XML/wsse/AbstractPasswordString.php +++ b/src/XML/wsse/AbstractPasswordString.php @@ -12,7 +12,7 @@ /** * Abstract class defining the PasswordString type * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractPasswordString extends AbstractAttributedString { diff --git a/src/XML/wsse/AbstractReferenceType.php b/src/XML/wsse/AbstractReferenceType.php index 668be9db..823a6eee 100644 --- a/src/XML/wsse/AbstractReferenceType.php +++ b/src/XML/wsse/AbstractReferenceType.php @@ -14,7 +14,7 @@ /** * Class defining the ReferenceType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractReferenceType extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractSecurityHeaderType.php b/src/XML/wsse/AbstractSecurityHeaderType.php index a56182aa..d1598e40 100644 --- a/src/XML/wsse/AbstractSecurityHeaderType.php +++ b/src/XML/wsse/AbstractSecurityHeaderType.php @@ -15,7 +15,7 @@ /** * Class defining the SecurityHeaderType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSecurityHeaderType extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractSecurityTokenReferenceType.php b/src/XML/wsse/AbstractSecurityTokenReferenceType.php index be8472b2..1136dd48 100644 --- a/src/XML/wsse/AbstractSecurityTokenReferenceType.php +++ b/src/XML/wsse/AbstractSecurityTokenReferenceType.php @@ -19,7 +19,7 @@ /** * Class defining the SecurityTokenReferenceType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSecurityTokenReferenceType extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractTransformationParametersType.php b/src/XML/wsse/AbstractTransformationParametersType.php index 514308da..5618a369 100644 --- a/src/XML/wsse/AbstractTransformationParametersType.php +++ b/src/XML/wsse/AbstractTransformationParametersType.php @@ -15,7 +15,7 @@ /** * Class defining the TransformationParametersType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractTransformationParametersType extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractUsernameTokenType.php b/src/XML/wsse/AbstractUsernameTokenType.php index f3c9d1d8..110e19d7 100644 --- a/src/XML/wsse/AbstractUsernameTokenType.php +++ b/src/XML/wsse/AbstractUsernameTokenType.php @@ -22,7 +22,7 @@ /** * Class defining the UsernameTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractUsernameTokenType extends AbstractWsseElement { diff --git a/src/XML/wsse/AbstractWsseElement.php b/src/XML/wsse/AbstractWsseElement.php index f9ebed00..68623fc3 100644 --- a/src/XML/wsse/AbstractWsseElement.php +++ b/src/XML/wsse/AbstractWsseElement.php @@ -11,7 +11,7 @@ * Abstract class to be implemented by all the classes in this namespace * * @see https://docs.oasis-open.org/wss/v1.1/wss-v1.1-spec-pr-SOAPMessageSecurity-01.htm#_Toc106443153 - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWsseElement extends AbstractElement { diff --git a/src/XML/wsse/BinarySecurityToken.php b/src/XML/wsse/BinarySecurityToken.php index e2588c0f..31f711ac 100644 --- a/src/XML/wsse/BinarySecurityToken.php +++ b/src/XML/wsse/BinarySecurityToken.php @@ -7,7 +7,7 @@ /** * Class defining the BinarySecurityToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BinarySecurityToken extends AbstractBinarySecurityTokenType { diff --git a/src/XML/wsse/Embedded.php b/src/XML/wsse/Embedded.php index e6095608..b9b05389 100644 --- a/src/XML/wsse/Embedded.php +++ b/src/XML/wsse/Embedded.php @@ -7,7 +7,7 @@ /** * Class defining the Embedded element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Embedded extends AbstractEmbeddedType { diff --git a/src/XML/wsse/KeyIdentifier.php b/src/XML/wsse/KeyIdentifier.php index f469e40f..e5726d3c 100644 --- a/src/XML/wsse/KeyIdentifier.php +++ b/src/XML/wsse/KeyIdentifier.php @@ -7,7 +7,7 @@ /** * Class defining the KeyIdentifier element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyIdentifier extends AbstractKeyIdentifierType { diff --git a/src/XML/wsse/Nonce.php b/src/XML/wsse/Nonce.php index 287d199e..e735d3dd 100644 --- a/src/XML/wsse/Nonce.php +++ b/src/XML/wsse/Nonce.php @@ -7,7 +7,7 @@ /** * Class defining the Nonce element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Nonce extends AbstractEncodedString { diff --git a/src/XML/wsse/Password.php b/src/XML/wsse/Password.php index 5f51d2fb..c4fc7519 100644 --- a/src/XML/wsse/Password.php +++ b/src/XML/wsse/Password.php @@ -7,7 +7,7 @@ /** * Class defining the Password element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Password extends AbstractPasswordString { diff --git a/src/XML/wsse/Reference.php b/src/XML/wsse/Reference.php index 5388b9ff..7ed205ca 100644 --- a/src/XML/wsse/Reference.php +++ b/src/XML/wsse/Reference.php @@ -7,7 +7,7 @@ /** * Class defining the Reference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Reference extends AbstractReferenceType { diff --git a/src/XML/wsse/Security.php b/src/XML/wsse/Security.php index 16d2ef29..1d223d12 100644 --- a/src/XML/wsse/Security.php +++ b/src/XML/wsse/Security.php @@ -7,7 +7,7 @@ /** * Class defining the Security element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Security extends AbstractSecurityHeaderType { diff --git a/src/XML/wsse/SecurityTokenReference.php b/src/XML/wsse/SecurityTokenReference.php index 9d75952e..c2f8b871 100644 --- a/src/XML/wsse/SecurityTokenReference.php +++ b/src/XML/wsse/SecurityTokenReference.php @@ -7,7 +7,7 @@ /** * Class defining the SecurityTokenReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityTokenReference extends AbstractSecurityTokenReferenceType { diff --git a/src/XML/wsse/TransformationParameters.php b/src/XML/wsse/TransformationParameters.php index 5332e2e8..338e4c8e 100644 --- a/src/XML/wsse/TransformationParameters.php +++ b/src/XML/wsse/TransformationParameters.php @@ -7,7 +7,7 @@ /** * Class defining the TransformationParameters element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TransformationParameters extends AbstractTransformationParametersType { diff --git a/src/XML/wsse/UsageTrait.php b/src/XML/wsse/UsageTrait.php index 74507d05..c21c972e 100644 --- a/src/XML/wsse/UsageTrait.php +++ b/src/XML/wsse/UsageTrait.php @@ -8,7 +8,7 @@ use SimpleSAML\XML\Exception\SchemaViolationException; /** - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait UsageTrait { diff --git a/src/XML/wsse/Username.php b/src/XML/wsse/Username.php index 054bb66d..306f9f6e 100644 --- a/src/XML/wsse/Username.php +++ b/src/XML/wsse/Username.php @@ -7,7 +7,7 @@ /** * Class defining the Username element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Username extends AbstractAttributedString { diff --git a/src/XML/wsse/UsernameToken.php b/src/XML/wsse/UsernameToken.php index e0cadf72..62e9f37a 100644 --- a/src/XML/wsse/UsernameToken.php +++ b/src/XML/wsse/UsernameToken.php @@ -7,7 +7,7 @@ /** * Class defining the UsernameToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UsernameToken extends AbstractUsernameTokenType { diff --git a/src/XML/wst/AbstractAuthenticatorType.php b/src/XML/wst/AbstractAuthenticatorType.php index f3d745d8..0b952889 100644 --- a/src/XML/wst/AbstractAuthenticatorType.php +++ b/src/XML/wst/AbstractAuthenticatorType.php @@ -16,7 +16,7 @@ /** * Class defining the AuthenticatorType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAuthenticatorType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractBinaryExchangeType.php b/src/XML/wst/AbstractBinaryExchangeType.php index a49d4570..fd108026 100644 --- a/src/XML/wst/AbstractBinaryExchangeType.php +++ b/src/XML/wst/AbstractBinaryExchangeType.php @@ -15,7 +15,7 @@ /** * A BinaryExchangeType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractBinaryExchangeType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractBinarySecretType.php b/src/XML/wst/AbstractBinarySecretType.php index f5c9c8c0..4b52280f 100644 --- a/src/XML/wst/AbstractBinarySecretType.php +++ b/src/XML/wst/AbstractBinarySecretType.php @@ -19,7 +19,7 @@ /** * A BinarySecertType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractBinarySecretType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractCancelTargetType.php b/src/XML/wst/AbstractCancelTargetType.php index 034b84d2..32bdf943 100644 --- a/src/XML/wst/AbstractCancelTargetType.php +++ b/src/XML/wst/AbstractCancelTargetType.php @@ -19,7 +19,7 @@ /** * Class defining the CancelTargetType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractCancelTargetType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractClaimsType.php b/src/XML/wst/AbstractClaimsType.php index e537ef2b..ee74ed05 100644 --- a/src/XML/wst/AbstractClaimsType.php +++ b/src/XML/wst/AbstractClaimsType.php @@ -16,7 +16,7 @@ /** * Class defining the ClaimsType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractClaimsType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractComputedKeyOpenEnum.php b/src/XML/wst/AbstractComputedKeyOpenEnum.php index 2acded36..47599c4d 100644 --- a/src/XML/wst/AbstractComputedKeyOpenEnum.php +++ b/src/XML/wst/AbstractComputedKeyOpenEnum.php @@ -17,7 +17,7 @@ /** * A ComputedKeyOpenEnum element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractComputedKeyOpenEnum extends AbstractWstElement { diff --git a/src/XML/wst/AbstractDelegateToType.php b/src/XML/wst/AbstractDelegateToType.php index f8a2b66f..b32cdf92 100644 --- a/src/XML/wst/AbstractDelegateToType.php +++ b/src/XML/wst/AbstractDelegateToType.php @@ -17,7 +17,7 @@ /** * Class defining the DelegateToType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractDelegateToType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractEncryptionType.php b/src/XML/wst/AbstractEncryptionType.php index a9b8e6b7..d3579563 100644 --- a/src/XML/wst/AbstractEncryptionType.php +++ b/src/XML/wst/AbstractEncryptionType.php @@ -17,7 +17,7 @@ /** * Class defining the EncryptionType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEncryptionType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractEntropyType.php b/src/XML/wst/AbstractEntropyType.php index a749ab6a..e5c668a8 100644 --- a/src/XML/wst/AbstractEntropyType.php +++ b/src/XML/wst/AbstractEntropyType.php @@ -15,7 +15,7 @@ /** * Class defining the EntropyType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractEntropyType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractKeyExchangeTokenType.php b/src/XML/wst/AbstractKeyExchangeTokenType.php index 9036f610..de1c4a7d 100644 --- a/src/XML/wst/AbstractKeyExchangeTokenType.php +++ b/src/XML/wst/AbstractKeyExchangeTokenType.php @@ -14,7 +14,7 @@ /** * Class defining the KeyExchangeTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractKeyExchangeTokenType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractKeyTypeOpenEnum.php b/src/XML/wst/AbstractKeyTypeOpenEnum.php index c7fe8332..5588bfe5 100644 --- a/src/XML/wst/AbstractKeyTypeOpenEnum.php +++ b/src/XML/wst/AbstractKeyTypeOpenEnum.php @@ -17,7 +17,7 @@ /** * A KeyTypeOpenEnum element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractKeyTypeOpenEnum extends AbstractWstElement { diff --git a/src/XML/wst/AbstractLifetimeType.php b/src/XML/wst/AbstractLifetimeType.php index 4906086b..bf6f02bc 100644 --- a/src/XML/wst/AbstractLifetimeType.php +++ b/src/XML/wst/AbstractLifetimeType.php @@ -14,7 +14,7 @@ /** * Class defining the LifetimeType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractLifetimeType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractOnBehalfOfType.php b/src/XML/wst/AbstractOnBehalfOfType.php index 1f8af94c..c0ee4729 100644 --- a/src/XML/wst/AbstractOnBehalfOfType.php +++ b/src/XML/wst/AbstractOnBehalfOfType.php @@ -17,7 +17,7 @@ /** * Class defining the OnBehalfOfType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractOnBehalfOfType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractParticipantType.php b/src/XML/wst/AbstractParticipantType.php index 2aae6d7d..86f108fe 100644 --- a/src/XML/wst/AbstractParticipantType.php +++ b/src/XML/wst/AbstractParticipantType.php @@ -17,7 +17,7 @@ /** * Class defining the ParticipantType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractParticipantType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractParticipantsType.php b/src/XML/wst/AbstractParticipantsType.php index f0b7407d..3b792885 100644 --- a/src/XML/wst/AbstractParticipantsType.php +++ b/src/XML/wst/AbstractParticipantsType.php @@ -15,7 +15,7 @@ /** * Class defining the ParticipantsType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractParticipantsType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractProofEncryptionType.php b/src/XML/wst/AbstractProofEncryptionType.php index 083a3f3d..b9362af8 100644 --- a/src/XML/wst/AbstractProofEncryptionType.php +++ b/src/XML/wst/AbstractProofEncryptionType.php @@ -17,7 +17,7 @@ /** * Class defining the ProofEncryptionType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractProofEncryptionType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRenewTargetType.php b/src/XML/wst/AbstractRenewTargetType.php index 6164aba4..650354c3 100644 --- a/src/XML/wst/AbstractRenewTargetType.php +++ b/src/XML/wst/AbstractRenewTargetType.php @@ -19,7 +19,7 @@ /** * Class defining the RenewTargetType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRenewTargetType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRenewingType.php b/src/XML/wst/AbstractRenewingType.php index febdc561..525d0e68 100644 --- a/src/XML/wst/AbstractRenewingType.php +++ b/src/XML/wst/AbstractRenewingType.php @@ -11,7 +11,7 @@ /** * Class defining the RenewingType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRenewingType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestSecurityTokenCollectionType.php b/src/XML/wst/AbstractRequestSecurityTokenCollectionType.php index 816244c0..9bec9fc2 100644 --- a/src/XML/wst/AbstractRequestSecurityTokenCollectionType.php +++ b/src/XML/wst/AbstractRequestSecurityTokenCollectionType.php @@ -13,7 +13,7 @@ /** * A RequestSecurityTokenCollectionType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestSecurityTokenCollectionType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestSecurityTokenResponseCollectionType.php b/src/XML/wst/AbstractRequestSecurityTokenResponseCollectionType.php index c06c3cb9..033d93f9 100644 --- a/src/XML/wst/AbstractRequestSecurityTokenResponseCollectionType.php +++ b/src/XML/wst/AbstractRequestSecurityTokenResponseCollectionType.php @@ -15,7 +15,7 @@ /** * A RequestSecurityTokenResponseCollectionType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestSecurityTokenResponseCollectionType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestSecurityTokenResponseType.php b/src/XML/wst/AbstractRequestSecurityTokenResponseType.php index 3d4acf0c..53c8886e 100644 --- a/src/XML/wst/AbstractRequestSecurityTokenResponseType.php +++ b/src/XML/wst/AbstractRequestSecurityTokenResponseType.php @@ -20,7 +20,7 @@ /** * Class defining the RequestSecurityTokenResponseType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestSecurityTokenResponseType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestSecurityTokenType.php b/src/XML/wst/AbstractRequestSecurityTokenType.php index 1ce85ba3..bd977b55 100644 --- a/src/XML/wst/AbstractRequestSecurityTokenType.php +++ b/src/XML/wst/AbstractRequestSecurityTokenType.php @@ -20,7 +20,7 @@ /** * Class defining the RequestSecurityTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestSecurityTokenType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestTypeOpenEnum.php b/src/XML/wst/AbstractRequestTypeOpenEnum.php index 76eb0070..f08d1f18 100644 --- a/src/XML/wst/AbstractRequestTypeOpenEnum.php +++ b/src/XML/wst/AbstractRequestTypeOpenEnum.php @@ -17,7 +17,7 @@ /** * A RequestTypeOpenEnum element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestTypeOpenEnum extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestedProofTokenType.php b/src/XML/wst/AbstractRequestedProofTokenType.php index ffc58951..f818505e 100644 --- a/src/XML/wst/AbstractRequestedProofTokenType.php +++ b/src/XML/wst/AbstractRequestedProofTokenType.php @@ -17,7 +17,7 @@ /** * Class defining the RequestedProofTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestedProofTokenType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestedReferenceType.php b/src/XML/wst/AbstractRequestedReferenceType.php index e0e1fa4a..28e38f24 100644 --- a/src/XML/wst/AbstractRequestedReferenceType.php +++ b/src/XML/wst/AbstractRequestedReferenceType.php @@ -16,7 +16,7 @@ /** * Class defining the RequestedReferenceType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestedReferenceType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractRequestedSecurityTokenType.php b/src/XML/wst/AbstractRequestedSecurityTokenType.php index cf38c82d..53bece0d 100644 --- a/src/XML/wst/AbstractRequestedSecurityTokenType.php +++ b/src/XML/wst/AbstractRequestedSecurityTokenType.php @@ -19,7 +19,7 @@ /** * Class defining the RequestedSecurityTokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractRequestedSecurityTokenType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractSignChallengeType.php b/src/XML/wst/AbstractSignChallengeType.php index 76ec4a82..772314cf 100644 --- a/src/XML/wst/AbstractSignChallengeType.php +++ b/src/XML/wst/AbstractSignChallengeType.php @@ -17,7 +17,7 @@ /** * Class defining the SignChallengeType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractSignChallengeType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractStatusCodeOpenEnum.php b/src/XML/wst/AbstractStatusCodeOpenEnum.php index e2e59861..95260813 100644 --- a/src/XML/wst/AbstractStatusCodeOpenEnum.php +++ b/src/XML/wst/AbstractStatusCodeOpenEnum.php @@ -17,7 +17,7 @@ /** * A StatusCodeOpenEnum element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractStatusCodeOpenEnum extends AbstractWstElement { diff --git a/src/XML/wst/AbstractStatusType.php b/src/XML/wst/AbstractStatusType.php index 8078444e..17dfe805 100644 --- a/src/XML/wst/AbstractStatusType.php +++ b/src/XML/wst/AbstractStatusType.php @@ -13,7 +13,7 @@ /** * Class defining the StatusType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractStatusType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractUseKeyType.php b/src/XML/wst/AbstractUseKeyType.php index 784d05dc..97930e5d 100644 --- a/src/XML/wst/AbstractUseKeyType.php +++ b/src/XML/wst/AbstractUseKeyType.php @@ -17,7 +17,7 @@ /** * Class defining the UseKeyType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractUseKeyType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractValidateTargetType.php b/src/XML/wst/AbstractValidateTargetType.php index 7f6ae115..78513bc4 100644 --- a/src/XML/wst/AbstractValidateTargetType.php +++ b/src/XML/wst/AbstractValidateTargetType.php @@ -19,7 +19,7 @@ /** * Class defining the ValidateTargetType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractValidateTargetType extends AbstractWstElement { diff --git a/src/XML/wst/AbstractWstElement.php b/src/XML/wst/AbstractWstElement.php index 54193993..6c04523a 100644 --- a/src/XML/wst/AbstractWstElement.php +++ b/src/XML/wst/AbstractWstElement.php @@ -10,7 +10,7 @@ /** * Abstract class to be implemented by all the classes in this namespace * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWstElement extends AbstractElement { diff --git a/src/XML/wst/AllowPostdating.php b/src/XML/wst/AllowPostdating.php index 3f8698ba..b43d27d9 100644 --- a/src/XML/wst/AllowPostdating.php +++ b/src/XML/wst/AllowPostdating.php @@ -11,7 +11,7 @@ /** * A AllowPostdating element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AllowPostdating extends AbstractWstElement { diff --git a/src/XML/wst/AuthenticationType.php b/src/XML/wst/AuthenticationType.php index db8d48ec..6c97e12a 100644 --- a/src/XML/wst/AuthenticationType.php +++ b/src/XML/wst/AuthenticationType.php @@ -9,7 +9,7 @@ /** * A AuthenticationType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AuthenticationType extends AbstractWstElement { diff --git a/src/XML/wst/Authenticator.php b/src/XML/wst/Authenticator.php index 15631dc4..5ed0b31d 100644 --- a/src/XML/wst/Authenticator.php +++ b/src/XML/wst/Authenticator.php @@ -7,7 +7,7 @@ /** * An Authenticator element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Authenticator extends AbstractAuthenticatorType { diff --git a/src/XML/wst/BinaryExchange.php b/src/XML/wst/BinaryExchange.php index c7af8330..987cd804 100644 --- a/src/XML/wst/BinaryExchange.php +++ b/src/XML/wst/BinaryExchange.php @@ -7,7 +7,7 @@ /** * A BinaryExchange element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BinaryExchange extends AbstractBinaryExchangeType { diff --git a/src/XML/wst/BinarySecret.php b/src/XML/wst/BinarySecret.php index 40a8f2ed..609887a4 100644 --- a/src/XML/wst/BinarySecret.php +++ b/src/XML/wst/BinarySecret.php @@ -7,7 +7,7 @@ /** * A BinarySecret element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BinarySecret extends AbstractBinarySecretType { diff --git a/src/XML/wst/CancelTarget.php b/src/XML/wst/CancelTarget.php index bab22093..d33d3dc1 100644 --- a/src/XML/wst/CancelTarget.php +++ b/src/XML/wst/CancelTarget.php @@ -7,7 +7,7 @@ /** * A CancelTarget element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CancelTarget extends AbstractCancelTargetType { diff --git a/src/XML/wst/CanonicalizationAlgorithm.php b/src/XML/wst/CanonicalizationAlgorithm.php index 585589df..7b0ba9e1 100644 --- a/src/XML/wst/CanonicalizationAlgorithm.php +++ b/src/XML/wst/CanonicalizationAlgorithm.php @@ -9,7 +9,7 @@ /** * A CanonicalizationAlgorithm element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CanonicalizationAlgorithm extends AbstractWstElement { diff --git a/src/XML/wst/Challenge.php b/src/XML/wst/Challenge.php index a99776d6..54937442 100644 --- a/src/XML/wst/Challenge.php +++ b/src/XML/wst/Challenge.php @@ -9,7 +9,7 @@ /** * A Challenge element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Challenge extends AbstractWstElement { diff --git a/src/XML/wst/Claims.php b/src/XML/wst/Claims.php index 7c53526f..164d1855 100644 --- a/src/XML/wst/Claims.php +++ b/src/XML/wst/Claims.php @@ -7,7 +7,7 @@ /** * A Claims element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Claims extends AbstractClaimsType { diff --git a/src/XML/wst/Code.php b/src/XML/wst/Code.php index b78afa6c..a389bad1 100644 --- a/src/XML/wst/Code.php +++ b/src/XML/wst/Code.php @@ -7,7 +7,7 @@ /** * A Code element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Code extends AbstractStatusCodeOpenEnum { diff --git a/src/XML/wst/CombinedHash.php b/src/XML/wst/CombinedHash.php index 11e5fe32..f94addb3 100644 --- a/src/XML/wst/CombinedHash.php +++ b/src/XML/wst/CombinedHash.php @@ -9,7 +9,7 @@ /** * A CombinedHash element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CombinedHash extends AbstractWstElement { diff --git a/src/XML/wst/ComputedKey.php b/src/XML/wst/ComputedKey.php index c3548176..950f47d5 100644 --- a/src/XML/wst/ComputedKey.php +++ b/src/XML/wst/ComputedKey.php @@ -7,7 +7,7 @@ /** * A ComputedKey element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ComputedKey extends AbstractComputedKeyOpenEnum { diff --git a/src/XML/wst/ComputedKeyAlgorithm.php b/src/XML/wst/ComputedKeyAlgorithm.php index 39b220a9..edff45ae 100644 --- a/src/XML/wst/ComputedKeyAlgorithm.php +++ b/src/XML/wst/ComputedKeyAlgorithm.php @@ -9,7 +9,7 @@ /** * A ComputedKeyAlgorithm element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ComputedKeyAlgorithm extends AbstractWstElement { diff --git a/src/XML/wst/Delegatable.php b/src/XML/wst/Delegatable.php index 2c91e5ef..75dce365 100644 --- a/src/XML/wst/Delegatable.php +++ b/src/XML/wst/Delegatable.php @@ -9,7 +9,7 @@ /** * A Delegatable element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Delegatable extends AbstractWstElement { diff --git a/src/XML/wst/DelegateTo.php b/src/XML/wst/DelegateTo.php index c1483dff..3ea0d8e5 100644 --- a/src/XML/wst/DelegateTo.php +++ b/src/XML/wst/DelegateTo.php @@ -7,7 +7,7 @@ /** * A DelegateTo element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DelegateTo extends AbstractDelegateToType { diff --git a/src/XML/wst/EncryptWith.php b/src/XML/wst/EncryptWith.php index 75e16668..02ec460c 100644 --- a/src/XML/wst/EncryptWith.php +++ b/src/XML/wst/EncryptWith.php @@ -9,7 +9,7 @@ /** * An EncryptWith element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptWith extends AbstractWstElement { diff --git a/src/XML/wst/Encryption.php b/src/XML/wst/Encryption.php index 7cae6fab..61b842c5 100644 --- a/src/XML/wst/Encryption.php +++ b/src/XML/wst/Encryption.php @@ -7,7 +7,7 @@ /** * A Encryption element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Encryption extends AbstractEncryptionType { diff --git a/src/XML/wst/EncryptionAlgorithm.php b/src/XML/wst/EncryptionAlgorithm.php index f105b41b..d56410a2 100644 --- a/src/XML/wst/EncryptionAlgorithm.php +++ b/src/XML/wst/EncryptionAlgorithm.php @@ -9,7 +9,7 @@ /** * A EncryptionAlgorithm element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptionAlgorithm extends AbstractWstElement { diff --git a/src/XML/wst/Entropy.php b/src/XML/wst/Entropy.php index 3521f823..7f2ed090 100644 --- a/src/XML/wst/Entropy.php +++ b/src/XML/wst/Entropy.php @@ -7,7 +7,7 @@ /** * An Entropy element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Entropy extends AbstractEntropyType { diff --git a/src/XML/wst/Forwardable.php b/src/XML/wst/Forwardable.php index e17012c2..ded68d47 100644 --- a/src/XML/wst/Forwardable.php +++ b/src/XML/wst/Forwardable.php @@ -9,7 +9,7 @@ /** * A Forwardable element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Forwardable extends AbstractWstElement { diff --git a/src/XML/wst/IssuedTokens.php b/src/XML/wst/IssuedTokens.php index c9066743..b16a01ca 100644 --- a/src/XML/wst/IssuedTokens.php +++ b/src/XML/wst/IssuedTokens.php @@ -7,7 +7,7 @@ /** * A IssuedTokens element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuedTokens extends AbstractRequestSecurityTokenResponseCollectionType { diff --git a/src/XML/wst/Issuer.php b/src/XML/wst/Issuer.php index a1cfbe82..47b210ab 100644 --- a/src/XML/wst/Issuer.php +++ b/src/XML/wst/Issuer.php @@ -10,7 +10,7 @@ /** * An Issuer element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Issuer extends AbstractEndpointReferenceType { diff --git a/src/XML/wst/KeyExchangeToken.php b/src/XML/wst/KeyExchangeToken.php index 94a521f2..97aca55b 100644 --- a/src/XML/wst/KeyExchangeToken.php +++ b/src/XML/wst/KeyExchangeToken.php @@ -7,7 +7,7 @@ /** * A KeyEchangeToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyExchangeToken extends AbstractKeyExchangeTokenType { diff --git a/src/XML/wst/KeySize.php b/src/XML/wst/KeySize.php index 2a2099ff..60213365 100644 --- a/src/XML/wst/KeySize.php +++ b/src/XML/wst/KeySize.php @@ -13,7 +13,7 @@ /** * Class representing WS-trust KeySize. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeySize extends AbstractWstElement { diff --git a/src/XML/wst/KeyType.php b/src/XML/wst/KeyType.php index 6d9f5321..e6d84713 100644 --- a/src/XML/wst/KeyType.php +++ b/src/XML/wst/KeyType.php @@ -7,7 +7,7 @@ /** * A KeyType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyType extends AbstractKeyTypeOpenEnum { diff --git a/src/XML/wst/KeyWrapAlgorithm.php b/src/XML/wst/KeyWrapAlgorithm.php index c6477b42..a0089eff 100644 --- a/src/XML/wst/KeyWrapAlgorithm.php +++ b/src/XML/wst/KeyWrapAlgorithm.php @@ -9,7 +9,7 @@ /** * A KeyWrapAlgorithm element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyWrapAlgorithm extends AbstractWstElement { diff --git a/src/XML/wst/Lifetime.php b/src/XML/wst/Lifetime.php index 6cddddfd..dde5862f 100644 --- a/src/XML/wst/Lifetime.php +++ b/src/XML/wst/Lifetime.php @@ -7,7 +7,7 @@ /** * A Lifetime element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Lifetime extends AbstractLifetimeType { diff --git a/src/XML/wst/OnBehalfOf.php b/src/XML/wst/OnBehalfOf.php index f42d393e..d7fa3833 100644 --- a/src/XML/wst/OnBehalfOf.php +++ b/src/XML/wst/OnBehalfOf.php @@ -7,7 +7,7 @@ /** * A OnBehalfOf element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class OnBehalfOf extends AbstractOnBehalfOfType { diff --git a/src/XML/wst/Participant.php b/src/XML/wst/Participant.php index a3130da1..b9f454f5 100644 --- a/src/XML/wst/Participant.php +++ b/src/XML/wst/Participant.php @@ -7,7 +7,7 @@ /** * A Participant element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Participant extends AbstractParticipantType { diff --git a/src/XML/wst/Participants.php b/src/XML/wst/Participants.php index 3b95c2bb..1352a635 100644 --- a/src/XML/wst/Participants.php +++ b/src/XML/wst/Participants.php @@ -7,7 +7,7 @@ /** * A Participants element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Participants extends AbstractParticipantsType { diff --git a/src/XML/wst/Primary.php b/src/XML/wst/Primary.php index c6e5dee1..fe59f1ae 100644 --- a/src/XML/wst/Primary.php +++ b/src/XML/wst/Primary.php @@ -7,7 +7,7 @@ /** * A Primary element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Primary extends AbstractParticipantType { diff --git a/src/XML/wst/ProofEncryption.php b/src/XML/wst/ProofEncryption.php index 495ce787..fa0ee4ee 100644 --- a/src/XML/wst/ProofEncryption.php +++ b/src/XML/wst/ProofEncryption.php @@ -7,7 +7,7 @@ /** * A ProofEncryption element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProofEncryption extends AbstractProofEncryptionType { diff --git a/src/XML/wst/Reason.php b/src/XML/wst/Reason.php index 9806712d..7d38e6af 100644 --- a/src/XML/wst/Reason.php +++ b/src/XML/wst/Reason.php @@ -9,7 +9,7 @@ /** * A Reason element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Reason extends AbstractWstElement { diff --git a/src/XML/wst/RenewTarget.php b/src/XML/wst/RenewTarget.php index fd8f81cd..72c4bae1 100644 --- a/src/XML/wst/RenewTarget.php +++ b/src/XML/wst/RenewTarget.php @@ -7,7 +7,7 @@ /** * A RenewTarget element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RenewTarget extends AbstractRenewTargetType { diff --git a/src/XML/wst/Renewing.php b/src/XML/wst/Renewing.php index 0835f1d5..4ba9b855 100644 --- a/src/XML/wst/Renewing.php +++ b/src/XML/wst/Renewing.php @@ -7,7 +7,7 @@ /** * A Renewing element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Renewing extends AbstractRenewingType { diff --git a/src/XML/wst/RequestKET.php b/src/XML/wst/RequestKET.php index ecd04c17..ac36200c 100644 --- a/src/XML/wst/RequestKET.php +++ b/src/XML/wst/RequestKET.php @@ -11,7 +11,7 @@ /** * A RequestKET element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestKET extends AbstractWstElement { diff --git a/src/XML/wst/RequestSecurityToken.php b/src/XML/wst/RequestSecurityToken.php index ff18874e..602b7a41 100644 --- a/src/XML/wst/RequestSecurityToken.php +++ b/src/XML/wst/RequestSecurityToken.php @@ -7,7 +7,7 @@ /** * A RequestSecurityToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityToken extends AbstractRequestSecurityTokenType { diff --git a/src/XML/wst/RequestSecurityTokenCollection.php b/src/XML/wst/RequestSecurityTokenCollection.php index 92cac6dd..ea6c9205 100644 --- a/src/XML/wst/RequestSecurityTokenCollection.php +++ b/src/XML/wst/RequestSecurityTokenCollection.php @@ -7,7 +7,7 @@ /** * A RequestSecurityTokenCollection element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenCollection extends AbstractRequestSecurityTokenCollectionType { diff --git a/src/XML/wst/RequestSecurityTokenResponse.php b/src/XML/wst/RequestSecurityTokenResponse.php index 2cd5c3de..e961dbd0 100644 --- a/src/XML/wst/RequestSecurityTokenResponse.php +++ b/src/XML/wst/RequestSecurityTokenResponse.php @@ -7,7 +7,7 @@ /** * A RequestSecurityTokenResponse element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenResponse extends AbstractRequestSecurityTokenResponseType { diff --git a/src/XML/wst/RequestSecurityTokenResponseCollection.php b/src/XML/wst/RequestSecurityTokenResponseCollection.php index 62d8923b..d2865fe1 100644 --- a/src/XML/wst/RequestSecurityTokenResponseCollection.php +++ b/src/XML/wst/RequestSecurityTokenResponseCollection.php @@ -7,7 +7,7 @@ /** * A RequestSecurityTokenResponseCollection element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenResponseCollection extends AbstractRequestSecurityTokenResponseCollectionType { diff --git a/src/XML/wst/RequestType.php b/src/XML/wst/RequestType.php index 07e18cd5..6fe37140 100644 --- a/src/XML/wst/RequestType.php +++ b/src/XML/wst/RequestType.php @@ -7,7 +7,7 @@ /** * A RequestType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestType extends AbstractRequestTypeOpenEnum { diff --git a/src/XML/wst/RequestedAttachedReference.php b/src/XML/wst/RequestedAttachedReference.php index ac682886..3767046d 100644 --- a/src/XML/wst/RequestedAttachedReference.php +++ b/src/XML/wst/RequestedAttachedReference.php @@ -7,7 +7,7 @@ /** * A RequestedAttachedReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedAttachedReference extends AbstractRequestedReferenceType { diff --git a/src/XML/wst/RequestedProofToken.php b/src/XML/wst/RequestedProofToken.php index 448dd727..f615047e 100644 --- a/src/XML/wst/RequestedProofToken.php +++ b/src/XML/wst/RequestedProofToken.php @@ -7,7 +7,7 @@ /** * A RequestedProofToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedProofToken extends AbstractRequestedProofTokenType { diff --git a/src/XML/wst/RequestedSecurityToken.php b/src/XML/wst/RequestedSecurityToken.php index 08ddf684..90ce0d18 100644 --- a/src/XML/wst/RequestedSecurityToken.php +++ b/src/XML/wst/RequestedSecurityToken.php @@ -7,7 +7,7 @@ /** * A RequestedSecurityToken element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedSecurityToken extends AbstractRequestedSecurityTokenType { diff --git a/src/XML/wst/RequestedTokenCancelled.php b/src/XML/wst/RequestedTokenCancelled.php index 9a428d7d..b415325a 100644 --- a/src/XML/wst/RequestedTokenCancelled.php +++ b/src/XML/wst/RequestedTokenCancelled.php @@ -11,7 +11,7 @@ /** * A RequestedTokenCancelled element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedTokenCancelled extends AbstractWstElement { diff --git a/src/XML/wst/RequestedUnattachedReference.php b/src/XML/wst/RequestedUnattachedReference.php index daae52f0..1bf19c84 100644 --- a/src/XML/wst/RequestedUnattachedReference.php +++ b/src/XML/wst/RequestedUnattachedReference.php @@ -7,7 +7,7 @@ /** * A RequestedUnattachedReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedUnattachedReference extends AbstractRequestedReferenceType { diff --git a/src/XML/wst/SignChallenge.php b/src/XML/wst/SignChallenge.php index 2edf3dfe..046870e3 100644 --- a/src/XML/wst/SignChallenge.php +++ b/src/XML/wst/SignChallenge.php @@ -7,7 +7,7 @@ /** * An SignChallenge element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignChallenge extends AbstractSignChallengeType { diff --git a/src/XML/wst/SignChallengeResponse.php b/src/XML/wst/SignChallengeResponse.php index 1824067f..6e88c6d1 100644 --- a/src/XML/wst/SignChallengeResponse.php +++ b/src/XML/wst/SignChallengeResponse.php @@ -7,7 +7,7 @@ /** * An SignChallengeResponse element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignChallengeResponse extends AbstractSignChallengeType { diff --git a/src/XML/wst/SignWith.php b/src/XML/wst/SignWith.php index 3ba1a575..a38387de 100644 --- a/src/XML/wst/SignWith.php +++ b/src/XML/wst/SignWith.php @@ -9,7 +9,7 @@ /** * A SignWith element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignWith extends AbstractWstElement { diff --git a/src/XML/wst/SignatureAlgorithm.php b/src/XML/wst/SignatureAlgorithm.php index b3653b5a..aa48ba70 100644 --- a/src/XML/wst/SignatureAlgorithm.php +++ b/src/XML/wst/SignatureAlgorithm.php @@ -9,7 +9,7 @@ /** * A SignatureAlgorithm element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignatureAlgorithm extends AbstractWstElement { diff --git a/src/XML/wst/Status.php b/src/XML/wst/Status.php index 1807e033..a3660d0c 100644 --- a/src/XML/wst/Status.php +++ b/src/XML/wst/Status.php @@ -7,7 +7,7 @@ /** * A Status element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Status extends AbstractStatusType { diff --git a/src/XML/wst/TokenType.php b/src/XML/wst/TokenType.php index 39629fee..a5fbf9bc 100644 --- a/src/XML/wst/TokenType.php +++ b/src/XML/wst/TokenType.php @@ -9,7 +9,7 @@ /** * A TokenType element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TokenType extends AbstractWstElement { diff --git a/src/XML/wst/UseKey.php b/src/XML/wst/UseKey.php index 6d7cd005..d52d4f96 100644 --- a/src/XML/wst/UseKey.php +++ b/src/XML/wst/UseKey.php @@ -7,7 +7,7 @@ /** * A UseKey element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UseKey extends AbstractUseKeyType { diff --git a/src/XML/wst/ValidateTarget.php b/src/XML/wst/ValidateTarget.php index acfaf55d..7e1a3997 100644 --- a/src/XML/wst/ValidateTarget.php +++ b/src/XML/wst/ValidateTarget.php @@ -7,7 +7,7 @@ /** * A ValidateTarget element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValidateTarget extends AbstractValidateTargetType { diff --git a/src/XML/wsu/AbstractAttributedDateTime.php b/src/XML/wsu/AbstractAttributedDateTime.php index 1308dd82..e7576ac6 100644 --- a/src/XML/wsu/AbstractAttributedDateTime.php +++ b/src/XML/wsu/AbstractAttributedDateTime.php @@ -17,7 +17,7 @@ /** * Abstract class defining the AttributedDateTime type * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributedDateTime extends AbstractWsuElement { diff --git a/src/XML/wsu/AbstractAttributedURI.php b/src/XML/wsu/AbstractAttributedURI.php index e38ea5ed..0c385312 100644 --- a/src/XML/wsu/AbstractAttributedURI.php +++ b/src/XML/wsu/AbstractAttributedURI.php @@ -15,7 +15,7 @@ /** * Abstract class defining the AttributedURI type * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractAttributedURI extends AbstractWsuElement { diff --git a/src/XML/wsu/AbstractTimestamp.php b/src/XML/wsu/AbstractTimestamp.php index 16750da0..6b60a5c9 100644 --- a/src/XML/wsu/AbstractTimestamp.php +++ b/src/XML/wsu/AbstractTimestamp.php @@ -18,7 +18,7 @@ /** * Abstract class defining the Timestamp type * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractTimestamp extends AbstractWsuElement { diff --git a/src/XML/wsu/AbstractWsuElement.php b/src/XML/wsu/AbstractWsuElement.php index 94bb1017..09f620cf 100644 --- a/src/XML/wsu/AbstractWsuElement.php +++ b/src/XML/wsu/AbstractWsuElement.php @@ -11,7 +11,7 @@ * Abstract class to be implemented by all the classes in this namespace * * @see https://docs.oasis-open.org/wss/v1.1/wss-v1.1-spec-pr-SOAPMessageSecurity-01.htm#_Toc106443153 - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWsuElement extends AbstractElement { diff --git a/src/XML/wsu/Created.php b/src/XML/wsu/Created.php index 66c1aa61..49e19ce6 100644 --- a/src/XML/wsu/Created.php +++ b/src/XML/wsu/Created.php @@ -7,7 +7,7 @@ /** * Class defining the Created element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Created extends AbstractAttributedDateTime { diff --git a/src/XML/wsu/Expires.php b/src/XML/wsu/Expires.php index 30459482..0eae6927 100644 --- a/src/XML/wsu/Expires.php +++ b/src/XML/wsu/Expires.php @@ -7,7 +7,7 @@ /** * Class defining the Expires element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Expires extends AbstractAttributedDateTime { diff --git a/src/XML/wsu/Timestamp.php b/src/XML/wsu/Timestamp.php index 849af2b1..abfcf423 100644 --- a/src/XML/wsu/Timestamp.php +++ b/src/XML/wsu/Timestamp.php @@ -7,7 +7,7 @@ /** * Class defining the Timestamp element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Timestamp extends AbstractTimestamp { diff --git a/src/XML/wsx/AbstractWsxElement.php b/src/XML/wsx/AbstractWsxElement.php index 106a2185..64faeee9 100644 --- a/src/XML/wsx/AbstractWsxElement.php +++ b/src/XML/wsx/AbstractWsxElement.php @@ -10,7 +10,7 @@ /** * Abstract class to be implemented by all the classes in this namespace * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ abstract class AbstractWsxElement extends AbstractElement { diff --git a/src/XML/wsx/Dialect.php b/src/XML/wsx/Dialect.php index 6321ac89..ac861181 100644 --- a/src/XML/wsx/Dialect.php +++ b/src/XML/wsx/Dialect.php @@ -9,7 +9,7 @@ /** * An Dialect element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Dialect extends AbstractWsxElement { diff --git a/src/XML/wsx/GetMetadata.php b/src/XML/wsx/GetMetadata.php index b1e67872..0b8cfaf0 100644 --- a/src/XML/wsx/GetMetadata.php +++ b/src/XML/wsx/GetMetadata.php @@ -16,7 +16,7 @@ /** * Class defining the GetMetadata element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class GetMetadata extends AbstractWsxElement { diff --git a/src/XML/wsx/Identifier.php b/src/XML/wsx/Identifier.php index f28b286d..b729f381 100644 --- a/src/XML/wsx/Identifier.php +++ b/src/XML/wsx/Identifier.php @@ -9,7 +9,7 @@ /** * An Identifier element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Identifier extends AbstractWsxElement { diff --git a/src/XML/wsx/Location.php b/src/XML/wsx/Location.php index d3b9e67b..0ca5705d 100644 --- a/src/XML/wsx/Location.php +++ b/src/XML/wsx/Location.php @@ -9,7 +9,7 @@ /** * An Location element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Location extends AbstractWsxElement { diff --git a/src/XML/wsx/Metadata.php b/src/XML/wsx/Metadata.php index 5ed17ace..07a6c171 100644 --- a/src/XML/wsx/Metadata.php +++ b/src/XML/wsx/Metadata.php @@ -15,7 +15,7 @@ /** * Class defining the Metadata element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Metadata extends AbstractWsxElement { diff --git a/src/XML/wsx/MetadataReference.php b/src/XML/wsx/MetadataReference.php index 9d143941..96b136e3 100644 --- a/src/XML/wsx/MetadataReference.php +++ b/src/XML/wsx/MetadataReference.php @@ -15,7 +15,7 @@ /** * Class defining the MetadataReference element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MetadataReference extends AbstractWsxElement { diff --git a/src/XML/wsx/MetadataSection.php b/src/XML/wsx/MetadataSection.php index 706414ec..edab2127 100644 --- a/src/XML/wsx/MetadataSection.php +++ b/src/XML/wsx/MetadataSection.php @@ -19,7 +19,7 @@ /** * Class defining the MetadataSection element * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MetadataSection extends AbstractWsxElement { diff --git a/tests/WSSecurity/Constants.php b/tests/WSSecurity/Constants.php index 4156e464..3ccb4a46 100644 --- a/tests/WSSecurity/Constants.php +++ b/tests/WSSecurity/Constants.php @@ -7,7 +7,7 @@ /** * A collection of constants used in this library for unit testing. * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ class Constants extends \SimpleSAML\WSSecurity\Constants { diff --git a/tests/WSSecurity/XML/auth/ClaimTypeTest.php b/tests/WSSecurity/XML/auth/ClaimTypeTest.php index a3e70319..65f1f80b 100644 --- a/tests/WSSecurity/XML/auth/ClaimTypeTest.php +++ b/tests/WSSecurity/XML/auth/ClaimTypeTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ClaimType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractClaimType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ConstrainedManyValueTest.php b/tests/WSSecurity/XML/auth/ConstrainedManyValueTest.php index 835013aa..0a865f03 100644 --- a/tests/WSSecurity/XML/auth/ConstrainedManyValueTest.php +++ b/tests/WSSecurity/XML/auth/ConstrainedManyValueTest.php @@ -18,7 +18,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedManyValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ConstrainedManyValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ConstrainedSingleValueTest.php b/tests/WSSecurity/XML/auth/ConstrainedSingleValueTest.php index dff13602..ddd638c6 100644 --- a/tests/WSSecurity/XML/auth/ConstrainedSingleValueTest.php +++ b/tests/WSSecurity/XML/auth/ConstrainedSingleValueTest.php @@ -23,7 +23,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ConstrainedSingleValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ConstrainedValueTest.php b/tests/WSSecurity/XML/auth/ConstrainedValueTest.php index 71d14047..831055dd 100644 --- a/tests/WSSecurity/XML/auth/ConstrainedValueTest.php +++ b/tests/WSSecurity/XML/auth/ConstrainedValueTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ConstrainedValue * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ConstrainedValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/DescriptionTest.php b/tests/WSSecurity/XML/auth/DescriptionTest.php index bd8996af..e3d37053 100644 --- a/tests/WSSecurity/XML/auth/DescriptionTest.php +++ b/tests/WSSecurity/XML/auth/DescriptionTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\Description * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractDescriptionType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DescriptionTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/DisplayNameTest.php b/tests/WSSecurity/XML/auth/DisplayNameTest.php index ebd19341..01285ae9 100644 --- a/tests/WSSecurity/XML/auth/DisplayNameTest.php +++ b/tests/WSSecurity/XML/auth/DisplayNameTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\DisplayName * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractDisplayNameType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DisplayNameTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/DisplayValueTest.php b/tests/WSSecurity/XML/auth/DisplayValueTest.php index 9b4ddac3..69b58300 100644 --- a/tests/WSSecurity/XML/auth/DisplayValueTest.php +++ b/tests/WSSecurity/XML/auth/DisplayValueTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\DisplayValue * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractDisplayValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DisplayValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/EncryptedValueTest.php b/tests/WSSecurity/XML/auth/EncryptedValueTest.php index 86b7cfc2..7399de60 100644 --- a/tests/WSSecurity/XML/auth/EncryptedValueTest.php +++ b/tests/WSSecurity/XML/auth/EncryptedValueTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\EncryptedValue * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractEncryptedValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/StructuredValueTest.php b/tests/WSSecurity/XML/auth/StructuredValueTest.php index 7aea1c61..6755ca71 100644 --- a/tests/WSSecurity/XML/auth/StructuredValueTest.php +++ b/tests/WSSecurity/XML/auth/StructuredValueTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\StructuredValue * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractStructuredValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class StructuredValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueGreaterThanOrEqualTest.php b/tests/WSSecurity/XML/auth/ValueGreaterThanOrEqualTest.php index c560ac20..87e1de38 100644 --- a/tests/WSSecurity/XML/auth/ValueGreaterThanOrEqualTest.php +++ b/tests/WSSecurity/XML/auth/ValueGreaterThanOrEqualTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueGreaterThanOrEqual * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueGreaterThanOrEqualTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueGreaterThanTest.php b/tests/WSSecurity/XML/auth/ValueGreaterThanTest.php index e8ed431d..9b36025a 100644 --- a/tests/WSSecurity/XML/auth/ValueGreaterThanTest.php +++ b/tests/WSSecurity/XML/auth/ValueGreaterThanTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueGreaterThan * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueGreaterThanTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueInRangenTest.php b/tests/WSSecurity/XML/auth/ValueInRangenTest.php index fe51f350..de6a9b46 100644 --- a/tests/WSSecurity/XML/auth/ValueInRangenTest.php +++ b/tests/WSSecurity/XML/auth/ValueInRangenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueInRangen * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractValueInRangeType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueInRangenTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueLessThanOrEqualTest.php b/tests/WSSecurity/XML/auth/ValueLessThanOrEqualTest.php index 618d6cbe..9ba7e757 100644 --- a/tests/WSSecurity/XML/auth/ValueLessThanOrEqualTest.php +++ b/tests/WSSecurity/XML/auth/ValueLessThanOrEqualTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueLessThanOrEqual * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueLessThanOrEqualTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueLessThanTest.php b/tests/WSSecurity/XML/auth/ValueLessThanTest.php index 27d1336d..f62c2112 100644 --- a/tests/WSSecurity/XML/auth/ValueLessThanTest.php +++ b/tests/WSSecurity/XML/auth/ValueLessThanTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueLessThan * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueLessThanTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueLowerBoundTest.php b/tests/WSSecurity/XML/auth/ValueLowerBoundTest.php index d115590f..fd317ba2 100644 --- a/tests/WSSecurity/XML/auth/ValueLowerBoundTest.php +++ b/tests/WSSecurity/XML/auth/ValueLowerBoundTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueLowerBound * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueLowerBoundTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueOneOfWithStructuredValuesTest.php b/tests/WSSecurity/XML/auth/ValueOneOfWithStructuredValuesTest.php index 37a17a27..0d144bfd 100644 --- a/tests/WSSecurity/XML/auth/ValueOneOfWithStructuredValuesTest.php +++ b/tests/WSSecurity/XML/auth/ValueOneOfWithStructuredValuesTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueOneOf * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedManyValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueOneOfWithStructuredValuesTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueOneOfWithValuesTest.php b/tests/WSSecurity/XML/auth/ValueOneOfWithValuesTest.php index 80bb61d9..d86cc9f7 100644 --- a/tests/WSSecurity/XML/auth/ValueOneOfWithValuesTest.php +++ b/tests/WSSecurity/XML/auth/ValueOneOfWithValuesTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueOneOf * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedManyValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueOneOfWithValuesTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueTest.php b/tests/WSSecurity/XML/auth/ValueTest.php index 541af407..46b526ca 100644 --- a/tests/WSSecurity/XML/auth/ValueTest.php +++ b/tests/WSSecurity/XML/auth/ValueTest.php @@ -17,7 +17,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\auth\Value * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/auth/ValueUpperBoundTest.php b/tests/WSSecurity/XML/auth/ValueUpperBoundTest.php index 7bf93718..b539a835 100644 --- a/tests/WSSecurity/XML/auth/ValueUpperBoundTest.php +++ b/tests/WSSecurity/XML/auth/ValueUpperBoundTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\auth\ValueUpperBound * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractConstrainedSingleValueType * @covers \SimpleSAML\WSSecurity\XML\auth\AbstractAuthElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValueUpperBoundTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/AdditionalContextProcessedTest.php b/tests/WSSecurity/XML/fed/AdditionalContextProcessedTest.php index b2236126..93fb6afb 100644 --- a/tests/WSSecurity/XML/fed/AdditionalContextProcessedTest.php +++ b/tests/WSSecurity/XML/fed/AdditionalContextProcessedTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AdditionalContextProcessedTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ApplicationServiceEndpointTest.php b/tests/WSSecurity/XML/fed/ApplicationServiceEndpointTest.php index 740d4f36..f90de77d 100644 --- a/tests/WSSecurity/XML/fed/ApplicationServiceEndpointTest.php +++ b/tests/WSSecurity/XML/fed/ApplicationServiceEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\ApplicationServiceEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ApplicationServiceEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/AttributeServiceEndpointTest.php b/tests/WSSecurity/XML/fed/AttributeServiceEndpointTest.php index 8c41ae9d..8353bb10 100644 --- a/tests/WSSecurity/XML/fed/AttributeServiceEndpointTest.php +++ b/tests/WSSecurity/XML/fed/AttributeServiceEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AttributeServiceEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AttributeServiceEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/AttributeServiceEndpointsTest.php b/tests/WSSecurity/XML/fed/AttributeServiceEndpointsTest.php index b2f95d0d..1f0db3c5 100644 --- a/tests/WSSecurity/XML/fed/AttributeServiceEndpointsTest.php +++ b/tests/WSSecurity/XML/fed/AttributeServiceEndpointsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AttributeServiceEndpoints * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AttributeServiceEndpointsTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/AuthenticationTokenTest.php b/tests/WSSecurity/XML/fed/AuthenticationTokenTest.php index 3d718932..e8fb35d2 100644 --- a/tests/WSSecurity/XML/fed/AuthenticationTokenTest.php +++ b/tests/WSSecurity/XML/fed/AuthenticationTokenTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AuthenticationTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/AutomaticPseudonymsTest.php b/tests/WSSecurity/XML/fed/AutomaticPseudonymsTest.php index 68fe86e1..ccd9e3e5 100644 --- a/tests/WSSecurity/XML/fed/AutomaticPseudonymsTest.php +++ b/tests/WSSecurity/XML/fed/AutomaticPseudonymsTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AutomaticPseudonyms * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AutomaticPseudonymsTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ClaimDialectTest.php b/tests/WSSecurity/XML/fed/ClaimDialectTest.php index 5c8a884e..00cb7b45 100644 --- a/tests/WSSecurity/XML/fed/ClaimDialectTest.php +++ b/tests/WSSecurity/XML/fed/ClaimDialectTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\ClaimDialect * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractClaimDialectType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimDialectTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ClaimDialectsOfferedTest.php b/tests/WSSecurity/XML/fed/ClaimDialectsOfferedTest.php index d3b35c1f..d1b0f6b4 100644 --- a/tests/WSSecurity/XML/fed/ClaimDialectsOfferedTest.php +++ b/tests/WSSecurity/XML/fed/ClaimDialectsOfferedTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\ClaimDialectsOffered * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractClaimDialectsOfferedType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimDialectsOfferedTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ClaimTypesOfferedTest.php b/tests/WSSecurity/XML/fed/ClaimTypesOfferedTest.php index 0d0caa2b..f7b35587 100644 --- a/tests/WSSecurity/XML/fed/ClaimTypesOfferedTest.php +++ b/tests/WSSecurity/XML/fed/ClaimTypesOfferedTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractClaimTypesOfferedType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimTypesOfferedTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ClaimTypesRequestedTest.php b/tests/WSSecurity/XML/fed/ClaimTypesRequestedTest.php index cad9fdda..a9a019a3 100644 --- a/tests/WSSecurity/XML/fed/ClaimTypesRequestedTest.php +++ b/tests/WSSecurity/XML/fed/ClaimTypesRequestedTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractClaimTypesRequestedType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimTypesRequestedTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ClientPseudonymTest.php b/tests/WSSecurity/XML/fed/ClientPseudonymTest.php index bd5180b5..65ebb2d0 100644 --- a/tests/WSSecurity/XML/fed/ClientPseudonymTest.php +++ b/tests/WSSecurity/XML/fed/ClientPseudonymTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractClientPseudonymType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClientPseudonymTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/DisplayNameTest.php b/tests/WSSecurity/XML/fed/DisplayNameTest.php index 004a4f1a..1dff32df 100644 --- a/tests/WSSecurity/XML/fed/DisplayNameTest.php +++ b/tests/WSSecurity/XML/fed/DisplayNameTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAttributeExtensibleString * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DisplayNameTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/EMailTest.php b/tests/WSSecurity/XML/fed/EMailTest.php index ff5107cd..1ea209ee 100644 --- a/tests/WSSecurity/XML/fed/EMailTest.php +++ b/tests/WSSecurity/XML/fed/EMailTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAttributeExtensibleString * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EMailTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/FederationIDTest.php b/tests/WSSecurity/XML/fed/FederationIDTest.php index ad5696c5..dc83b537 100644 --- a/tests/WSSecurity/XML/fed/FederationIDTest.php +++ b/tests/WSSecurity/XML/fed/FederationIDTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAttributeExtensibleString * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationIDTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/FederationMetadataHandlerTest.php b/tests/WSSecurity/XML/fed/FederationMetadataHandlerTest.php index 2ce36495..4218eb16 100644 --- a/tests/WSSecurity/XML/fed/FederationMetadataHandlerTest.php +++ b/tests/WSSecurity/XML/fed/FederationMetadataHandlerTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFederationMetadataHandlerType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationMetadataHandlerTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/FederationMetadataTest.php b/tests/WSSecurity/XML/fed/FederationMetadataTest.php index db226d64..a7993df7 100644 --- a/tests/WSSecurity/XML/fed/FederationMetadataTest.php +++ b/tests/WSSecurity/XML/fed/FederationMetadataTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFederationMetadataType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationMetadataTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/FederationTest.php b/tests/WSSecurity/XML/fed/FederationTest.php index c191b169..38ed5ee5 100644 --- a/tests/WSSecurity/XML/fed/FederationTest.php +++ b/tests/WSSecurity/XML/fed/FederationTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFederationType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FederationTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/FilterPseudonymsTest.php b/tests/WSSecurity/XML/fed/FilterPseudonymsTest.php index ac34e32f..80cd4f38 100644 --- a/tests/WSSecurity/XML/fed/FilterPseudonymsTest.php +++ b/tests/WSSecurity/XML/fed/FilterPseudonymsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFilterPseudonymsType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FilterPseudonymsTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/FreshnessTest.php b/tests/WSSecurity/XML/fed/FreshnessTest.php index a76b8372..ef4e4ea7 100644 --- a/tests/WSSecurity/XML/fed/FreshnessTest.php +++ b/tests/WSSecurity/XML/fed/FreshnessTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFreshnessType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FreshnessTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/IssuerNameTest.php b/tests/WSSecurity/XML/fed/IssuerNameTest.php index c5314e40..bc212881 100644 --- a/tests/WSSecurity/XML/fed/IssuerNameTest.php +++ b/tests/WSSecurity/XML/fed/IssuerNameTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\IssuerName * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractIssuerNameType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuerNameTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/IssuesSpecificPolicyFaultTest.php b/tests/WSSecurity/XML/fed/IssuesSpecificPolicyFaultTest.php index 5c9c541f..44596807 100644 --- a/tests/WSSecurity/XML/fed/IssuesSpecificPolicyFaultTest.php +++ b/tests/WSSecurity/XML/fed/IssuesSpecificPolicyFaultTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuesSpecificPolicyFaultTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/LogicalServiceNamesOfferedTest.php b/tests/WSSecurity/XML/fed/LogicalServiceNamesOfferedTest.php index 7df229ce..dccc8573 100644 --- a/tests/WSSecurity/XML/fed/LogicalServiceNamesOfferedTest.php +++ b/tests/WSSecurity/XML/fed/LogicalServiceNamesOfferedTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\LogicalServiceNamesOffered * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractLogicalServiceNamesOfferedType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LogicalServiceNamesOfferedTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/PPIDTest.php b/tests/WSSecurity/XML/fed/PPIDTest.php index 4546070f..19f56e66 100644 --- a/tests/WSSecurity/XML/fed/PPIDTest.php +++ b/tests/WSSecurity/XML/fed/PPIDTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAttributeExtensibleString * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PPIDTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/PassiveRequestorEndpointTest.php b/tests/WSSecurity/XML/fed/PassiveRequestorEndpointTest.php index b322c846..5f31eceb 100644 --- a/tests/WSSecurity/XML/fed/PassiveRequestorEndpointTest.php +++ b/tests/WSSecurity/XML/fed/PassiveRequestorEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\PassiveRequestorEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PassiveRequestorEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/PassiveRequestorEndpointsTest.php b/tests/WSSecurity/XML/fed/PassiveRequestorEndpointsTest.php index bb7e0536..d397ccbe 100644 --- a/tests/WSSecurity/XML/fed/PassiveRequestorEndpointsTest.php +++ b/tests/WSSecurity/XML/fed/PassiveRequestorEndpointsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\PassiveRequestorEndpoints * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PassiveRequestorEndpointsTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ProofTokenTest.php b/tests/WSSecurity/XML/fed/ProofTokenTest.php index 6569f902..8b56da1f 100644 --- a/tests/WSSecurity/XML/fed/ProofTokenTest.php +++ b/tests/WSSecurity/XML/fed/ProofTokenTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\ProofToken * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractProofTokenType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProofTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/PseudonymBasisTest.php b/tests/WSSecurity/XML/fed/PseudonymBasisTest.php index 9148953e..4b891e88 100644 --- a/tests/WSSecurity/XML/fed/PseudonymBasisTest.php +++ b/tests/WSSecurity/XML/fed/PseudonymBasisTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\PseudonymBasis * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractPseudonymBasisType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PseudonymBasisTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/PseudonymServiceEndpointTest.php b/tests/WSSecurity/XML/fed/PseudonymServiceEndpointTest.php index e674bc43..80779c7f 100644 --- a/tests/WSSecurity/XML/fed/PseudonymServiceEndpointTest.php +++ b/tests/WSSecurity/XML/fed/PseudonymServiceEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\PseudonymServiceEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PseudonymServiceEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/PseudonymTest.php b/tests/WSSecurity/XML/fed/PseudonymTest.php index 57f0207e..f26b1f28 100644 --- a/tests/WSSecurity/XML/fed/PseudonymTest.php +++ b/tests/WSSecurity/XML/fed/PseudonymTest.php @@ -29,7 +29,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractPseudonymType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PseudonymTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RealmTest.php b/tests/WSSecurity/XML/fed/RealmTest.php index 0663a2a8..512e94d0 100644 --- a/tests/WSSecurity/XML/fed/RealmTest.php +++ b/tests/WSSecurity/XML/fed/RealmTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\Realm * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RealmTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ReferenceDigestTest.php b/tests/WSSecurity/XML/fed/ReferenceDigestTest.php index 8b5cc2f9..1cef7c75 100644 --- a/tests/WSSecurity/XML/fed/ReferenceDigestTest.php +++ b/tests/WSSecurity/XML/fed/ReferenceDigestTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractReferenceDigestType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceDigestTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ReferenceEPRTest.php b/tests/WSSecurity/XML/fed/ReferenceEPRTest.php index 48f8f087..89fde8c5 100644 --- a/tests/WSSecurity/XML/fed/ReferenceEPRTest.php +++ b/tests/WSSecurity/XML/fed/ReferenceEPRTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceEPRTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ReferenceToken11Test.php b/tests/WSSecurity/XML/fed/ReferenceToken11Test.php index 7dd44744..905fbb78 100644 --- a/tests/WSSecurity/XML/fed/ReferenceToken11Test.php +++ b/tests/WSSecurity/XML/fed/ReferenceToken11Test.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceToken11Test extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ReferenceTokenTest.php b/tests/WSSecurity/XML/fed/ReferenceTokenTest.php index 61951173..f44b8086 100644 --- a/tests/WSSecurity/XML/fed/ReferenceTokenTest.php +++ b/tests/WSSecurity/XML/fed/ReferenceTokenTest.php @@ -31,7 +31,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractReferenceTokenType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/ReferenceTypeTest.php b/tests/WSSecurity/XML/fed/ReferenceTypeTest.php index 3c2b4c81..14734177 100644 --- a/tests/WSSecurity/XML/fed/ReferenceTypeTest.php +++ b/tests/WSSecurity/XML/fed/ReferenceTypeTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAttributeExtensibleString * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RelativeToTest.php b/tests/WSSecurity/XML/fed/RelativeToTest.php index 5b38803e..549701fe 100644 --- a/tests/WSSecurity/XML/fed/RelativeToTest.php +++ b/tests/WSSecurity/XML/fed/RelativeToTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\RelativeTo * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractRelativeToType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RelativeToTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequestProofTokenTest.php b/tests/WSSecurity/XML/fed/RequestProofTokenTest.php index 9589cc32..e7ab090c 100644 --- a/tests/WSSecurity/XML/fed/RequestProofTokenTest.php +++ b/tests/WSSecurity/XML/fed/RequestProofTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractRequestProofTokenType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestProofTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequestPseudonymTest.php b/tests/WSSecurity/XML/fed/RequestPseudonymTest.php index 39bbde5b..a2345cc9 100644 --- a/tests/WSSecurity/XML/fed/RequestPseudonymTest.php +++ b/tests/WSSecurity/XML/fed/RequestPseudonymTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\RequestPseudonym * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractRequestPseudonymType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestPseudonymTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequireBearerTokensTest.php b/tests/WSSecurity/XML/fed/RequireBearerTokensTest.php index f2540072..9af47970 100644 --- a/tests/WSSecurity/XML/fed/RequireBearerTokensTest.php +++ b/tests/WSSecurity/XML/fed/RequireBearerTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireBearerTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequireReferenceTokenTest.php b/tests/WSSecurity/XML/fed/RequireReferenceTokenTest.php index 7c562c66..cf742703 100644 --- a/tests/WSSecurity/XML/fed/RequireReferenceTokenTest.php +++ b/tests/WSSecurity/XML/fed/RequireReferenceTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireReferenceTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequireSharedCookiesTest.php b/tests/WSSecurity/XML/fed/RequireSharedCookiesTest.php index 57c19d74..7e033be8 100644 --- a/tests/WSSecurity/XML/fed/RequireSharedCookiesTest.php +++ b/tests/WSSecurity/XML/fed/RequireSharedCookiesTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireSharedCookiesTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequireSignedTokensTest.php b/tests/WSSecurity/XML/fed/RequireSignedTokensTest.php index f8aeacb2..ee4f21e6 100644 --- a/tests/WSSecurity/XML/fed/RequireSignedTokensTest.php +++ b/tests/WSSecurity/XML/fed/RequireSignedTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireSignedTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/RequiresGenericClaimDialectTest.php b/tests/WSSecurity/XML/fed/RequiresGenericClaimDialectTest.php index 3d3de350..f6126d59 100644 --- a/tests/WSSecurity/XML/fed/RequiresGenericClaimDialectTest.php +++ b/tests/WSSecurity/XML/fed/RequiresGenericClaimDialectTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAssertionType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequiresGenericClaimDialectTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SecurityTokenServiceEndpointTest.php b/tests/WSSecurity/XML/fed/SecurityTokenServiceEndpointTest.php index adccab17..0f4ea41b 100644 --- a/tests/WSSecurity/XML/fed/SecurityTokenServiceEndpointTest.php +++ b/tests/WSSecurity/XML/fed/SecurityTokenServiceEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\SecurityTokenServiceEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityTokenServiceEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SecurityTokenTest.php b/tests/WSSecurity/XML/fed/SecurityTokenTest.php index 0a396c48..8e065e95 100644 --- a/tests/WSSecurity/XML/fed/SecurityTokenTest.php +++ b/tests/WSSecurity/XML/fed/SecurityTokenTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\SecurityToken * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractSecurityTokenType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SerialNoTest.php b/tests/WSSecurity/XML/fed/SerialNoTest.php index 50d2600e..26d99f86 100644 --- a/tests/WSSecurity/XML/fed/SerialNoTest.php +++ b/tests/WSSecurity/XML/fed/SerialNoTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractAttributeExtensibleString * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SerialNoTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SignOutBasisTest.php b/tests/WSSecurity/XML/fed/SignOutBasisTest.php index 4c3186c2..44b04566 100644 --- a/tests/WSSecurity/XML/fed/SignOutBasisTest.php +++ b/tests/WSSecurity/XML/fed/SignOutBasisTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractSignOutBasisType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignOutBasisTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SignOutTest.php b/tests/WSSecurity/XML/fed/SignOutTest.php index 9ebbbdc1..ff018083 100644 --- a/tests/WSSecurity/XML/fed/SignOutTest.php +++ b/tests/WSSecurity/XML/fed/SignOutTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractSignOutType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignOutTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointTest.php b/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointTest.php index 8335e138..cfc55147 100644 --- a/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointTest.php +++ b/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\SingleSignOutNotificationEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutNotificationEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointsTest.php b/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointsTest.php index 49a9d5b5..d7182fd9 100644 --- a/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointsTest.php +++ b/tests/WSSecurity/XML/fed/SingleSignOutNotificationEndpointsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\SingleSignOutNotificationEndpoints * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutNotificationEndpointsTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointTest.php b/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointTest.php index 9257b012..d9abcb24 100644 --- a/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointTest.php +++ b/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\SingleSignOutSubscriptionEndpoint * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutSubscriptionEndpointTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointsTest.php b/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointsTest.php index 78f363a8..226e19b5 100644 --- a/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointsTest.php +++ b/tests/WSSecurity/XML/fed/SingleSignOutSubscriptionEndpointsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\SingleSignOutSubscriptionEndpoints * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SingleSignOutSubscriptionEndpointsTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/TargetScopesTest.php b/tests/WSSecurity/XML/fed/TargetScopesTest.php index 113fbc70..cd8a934a 100644 --- a/tests/WSSecurity/XML/fed/TargetScopesTest.php +++ b/tests/WSSecurity/XML/fed/TargetScopesTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\TargetScopes * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractEndpointType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TargetScopesTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/TokenTypeTest.php b/tests/WSSecurity/XML/fed/TokenTypeTest.php index ee786100..97ed3a10 100644 --- a/tests/WSSecurity/XML/fed/TokenTypeTest.php +++ b/tests/WSSecurity/XML/fed/TokenTypeTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\TokenType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractTokenType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TokenTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/TokenTypesOfferedTest.php b/tests/WSSecurity/XML/fed/TokenTypesOfferedTest.php index abbebbd6..ac867783 100644 --- a/tests/WSSecurity/XML/fed/TokenTypesOfferedTest.php +++ b/tests/WSSecurity/XML/fed/TokenTypesOfferedTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\fed\TokenTypesOffered * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractTokenTypesOfferedType * @covers \SimpleSAML\WSSecurity\XML\fed\AbstractFedElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TokenTypesOfferedTest extends TestCase { diff --git a/tests/WSSecurity/XML/fed/WebBindingTest.php b/tests/WSSecurity/XML/fed/WebBindingTest.php index 79fb8ecd..36a798b0 100644 --- a/tests/WSSecurity/XML/fed/WebBindingTest.php +++ b/tests/WSSecurity/XML/fed/WebBindingTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WebBindingTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/AbsXPathTest.php b/tests/WSSecurity/XML/sp/AbsXPathTest.php index 4d56b799..1e500857 100644 --- a/tests/WSSecurity/XML/sp/AbsXPathTest.php +++ b/tests/WSSecurity/XML/sp/AbsXPathTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AbsXPathTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/AlgorithmSuiteTest.php b/tests/WSSecurity/XML/sp/AlgorithmSuiteTest.php index 0f9c804f..6dc56385 100644 --- a/tests/WSSecurity/XML/sp/AlgorithmSuiteTest.php +++ b/tests/WSSecurity/XML/sp/AlgorithmSuiteTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AlgorithmSuiteTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/AsymmetricBindingTest.php b/tests/WSSecurity/XML/sp/AsymmetricBindingTest.php index 1cb4c333..803c6187 100644 --- a/tests/WSSecurity/XML/sp/AsymmetricBindingTest.php +++ b/tests/WSSecurity/XML/sp/AsymmetricBindingTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AsymmetricBindingTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/AttachmentsTest.php b/tests/WSSecurity/XML/sp/AttachmentsTest.php index c538a98a..ba526b93 100644 --- a/tests/WSSecurity/XML/sp/AttachmentsTest.php +++ b/tests/WSSecurity/XML/sp/AttachmentsTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractEmptyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AttachmentsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic128Rsa15Test.php b/tests/WSSecurity/XML/sp/Basic128Rsa15Test.php index b5831c21..36ce6800 100644 --- a/tests/WSSecurity/XML/sp/Basic128Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/Basic128Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic128Sha256Rsa15Test.php b/tests/WSSecurity/XML/sp/Basic128Sha256Rsa15Test.php index dfec8e6d..f1f185e7 100644 --- a/tests/WSSecurity/XML/sp/Basic128Sha256Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/Basic128Sha256Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Sha256Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic128Sha256Test.php b/tests/WSSecurity/XML/sp/Basic128Sha256Test.php index e6a06169..62c55955 100644 --- a/tests/WSSecurity/XML/sp/Basic128Sha256Test.php +++ b/tests/WSSecurity/XML/sp/Basic128Sha256Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Sha256Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic128Test.php b/tests/WSSecurity/XML/sp/Basic128Test.php index d0cad862..cd5cb143 100644 --- a/tests/WSSecurity/XML/sp/Basic128Test.php +++ b/tests/WSSecurity/XML/sp/Basic128Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic128Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic192Rsa15Test.php b/tests/WSSecurity/XML/sp/Basic192Rsa15Test.php index 2c2979a8..5c3d4468 100644 --- a/tests/WSSecurity/XML/sp/Basic192Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/Basic192Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic192Sha256Rsa15Test.php b/tests/WSSecurity/XML/sp/Basic192Sha256Rsa15Test.php index 83d11e9d..42caba09 100644 --- a/tests/WSSecurity/XML/sp/Basic192Sha256Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/Basic192Sha256Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Sha256Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic192Sha256Test.php b/tests/WSSecurity/XML/sp/Basic192Sha256Test.php index 10d60c99..1af9f819 100644 --- a/tests/WSSecurity/XML/sp/Basic192Sha256Test.php +++ b/tests/WSSecurity/XML/sp/Basic192Sha256Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Sha256Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic192Test.php b/tests/WSSecurity/XML/sp/Basic192Test.php index cdf87236..1055b891 100644 --- a/tests/WSSecurity/XML/sp/Basic192Test.php +++ b/tests/WSSecurity/XML/sp/Basic192Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic192Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic256Rsa15Test.php b/tests/WSSecurity/XML/sp/Basic256Rsa15Test.php index c6f4b91a..7c255f45 100644 --- a/tests/WSSecurity/XML/sp/Basic256Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/Basic256Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic256Sha256Rsa15Test.php b/tests/WSSecurity/XML/sp/Basic256Sha256Rsa15Test.php index ceff4e4f..8103a11e 100644 --- a/tests/WSSecurity/XML/sp/Basic256Sha256Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/Basic256Sha256Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Sha256Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic256Sha256Test.php b/tests/WSSecurity/XML/sp/Basic256Sha256Test.php index 8a3d6e9d..2f3d3526 100644 --- a/tests/WSSecurity/XML/sp/Basic256Sha256Test.php +++ b/tests/WSSecurity/XML/sp/Basic256Sha256Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Sha256Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Basic256Test.php b/tests/WSSecurity/XML/sp/Basic256Test.php index a609564a..7b31ee23 100644 --- a/tests/WSSecurity/XML/sp/Basic256Test.php +++ b/tests/WSSecurity/XML/sp/Basic256Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Basic256Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/BodyTest.php b/tests/WSSecurity/XML/sp/BodyTest.php index a38a9ae1..15961f30 100644 --- a/tests/WSSecurity/XML/sp/BodyTest.php +++ b/tests/WSSecurity/XML/sp/BodyTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractEmptyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BodyTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/BootstrapPolicyTest.php b/tests/WSSecurity/XML/sp/BootstrapPolicyTest.php index b2804106..8b324bcb 100644 --- a/tests/WSSecurity/XML/sp/BootstrapPolicyTest.php +++ b/tests/WSSecurity/XML/sp/BootstrapPolicyTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BootstrapPolicyTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/ContentEncryptedElementsTest.php b/tests/WSSecurity/XML/sp/ContentEncryptedElementsTest.php index 86643f7b..c6e0ed15 100644 --- a/tests/WSSecurity/XML/sp/ContentEncryptedElementsTest.php +++ b/tests/WSSecurity/XML/sp/ContentEncryptedElementsTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSerElementsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ContentEncryptedElementsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EncryptBeforeSigningTest.php b/tests/WSSecurity/XML/sp/EncryptBeforeSigningTest.php index 73b1bf70..f7bc6bd0 100644 --- a/tests/WSSecurity/XML/sp/EncryptBeforeSigningTest.php +++ b/tests/WSSecurity/XML/sp/EncryptBeforeSigningTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptBeforeSigningTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EncryptSignatureTest.php b/tests/WSSecurity/XML/sp/EncryptSignatureTest.php index e4faa462..36cd9a79 100644 --- a/tests/WSSecurity/XML/sp/EncryptSignatureTest.php +++ b/tests/WSSecurity/XML/sp/EncryptSignatureTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptSignatureTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EncryptedElementsTest.php b/tests/WSSecurity/XML/sp/EncryptedElementsTest.php index d0f8630e..f9db871f 100644 --- a/tests/WSSecurity/XML/sp/EncryptedElementsTest.php +++ b/tests/WSSecurity/XML/sp/EncryptedElementsTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSerElementsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedElementsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EncryptedPartsTest.php b/tests/WSSecurity/XML/sp/EncryptedPartsTest.php index 3474f440..3c9bd700 100644 --- a/tests/WSSecurity/XML/sp/EncryptedPartsTest.php +++ b/tests/WSSecurity/XML/sp/EncryptedPartsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSePartsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedPartsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EncryptedSupportingTokensTest.php b/tests/WSSecurity/XML/sp/EncryptedSupportingTokensTest.php index 1e2d62cb..661fc214 100644 --- a/tests/WSSecurity/XML/sp/EncryptedSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/EncryptedSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptedSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EncryptionTokenTest.php b/tests/WSSecurity/XML/sp/EncryptionTokenTest.php index f90f121b..02fdfedd 100644 --- a/tests/WSSecurity/XML/sp/EncryptionTokenTest.php +++ b/tests/WSSecurity/XML/sp/EncryptionTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptionTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EndorsingEncryptedSupportingTokensTest.php b/tests/WSSecurity/XML/sp/EndorsingEncryptedSupportingTokensTest.php index 6ce0b7bd..163f05ec 100644 --- a/tests/WSSecurity/XML/sp/EndorsingEncryptedSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/EndorsingEncryptedSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EndorsingEncryptedSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/EndorsingSupportingTokensTest.php b/tests/WSSecurity/XML/sp/EndorsingSupportingTokensTest.php index f9fa977c..9b45f838 100644 --- a/tests/WSSecurity/XML/sp/EndorsingSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/EndorsingSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EndorsingSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/HashPasswordTest.php b/tests/WSSecurity/XML/sp/HashPasswordTest.php index 748affcc..2bb095b8 100644 --- a/tests/WSSecurity/XML/sp/HashPasswordTest.php +++ b/tests/WSSecurity/XML/sp/HashPasswordTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HashPasswordTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/HeaderTest.php b/tests/WSSecurity/XML/sp/HeaderTest.php index 8b8c4106..14452e01 100644 --- a/tests/WSSecurity/XML/sp/HeaderTest.php +++ b/tests/WSSecurity/XML/sp/HeaderTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractHeaderType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HeaderTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/HttpBasicAuthenticationTest.php b/tests/WSSecurity/XML/sp/HttpBasicAuthenticationTest.php index 3c593d37..c6b0f198 100644 --- a/tests/WSSecurity/XML/sp/HttpBasicAuthenticationTest.php +++ b/tests/WSSecurity/XML/sp/HttpBasicAuthenticationTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HttpBasicAuthenticationTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/HttpDigestAuthenticationTest.php b/tests/WSSecurity/XML/sp/HttpDigestAuthenticationTest.php index f9ca4f8c..ff8e0b33 100644 --- a/tests/WSSecurity/XML/sp/HttpDigestAuthenticationTest.php +++ b/tests/WSSecurity/XML/sp/HttpDigestAuthenticationTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HttpDigestAuthenticationTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/HttpsTokenTest.php b/tests/WSSecurity/XML/sp/HttpsTokenTest.php index e55ebcb9..9e6127ae 100644 --- a/tests/WSSecurity/XML/sp/HttpsTokenTest.php +++ b/tests/WSSecurity/XML/sp/HttpsTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class HttpsTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/IncludeTimestampTest.php b/tests/WSSecurity/XML/sp/IncludeTimestampTest.php index 2f5a90c8..e96ddc80 100644 --- a/tests/WSSecurity/XML/sp/IncludeTimestampTest.php +++ b/tests/WSSecurity/XML/sp/IncludeTimestampTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IncludeTimestampTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/InclusiveC14NTest.php b/tests/WSSecurity/XML/sp/InclusiveC14NTest.php index 06b76441..984ce369 100644 --- a/tests/WSSecurity/XML/sp/InclusiveC14NTest.php +++ b/tests/WSSecurity/XML/sp/InclusiveC14NTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InclusiveC14NTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/InitiatorEncryptionTokenTest.php b/tests/WSSecurity/XML/sp/InitiatorEncryptionTokenTest.php index 775f28d8..a9d34db4 100644 --- a/tests/WSSecurity/XML/sp/InitiatorEncryptionTokenTest.php +++ b/tests/WSSecurity/XML/sp/InitiatorEncryptionTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InitiatorEncryptionTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/InitiatorSignatureTokenTest.php b/tests/WSSecurity/XML/sp/InitiatorSignatureTokenTest.php index 8018e00c..68b6b149 100644 --- a/tests/WSSecurity/XML/sp/InitiatorSignatureTokenTest.php +++ b/tests/WSSecurity/XML/sp/InitiatorSignatureTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InitiatorSignatureTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/InitiatorTokenTest.php b/tests/WSSecurity/XML/sp/InitiatorTokenTest.php index 9805450e..8fe78f60 100644 --- a/tests/WSSecurity/XML/sp/InitiatorTokenTest.php +++ b/tests/WSSecurity/XML/sp/InitiatorTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class InitiatorTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/IssuedTokenTest.php b/tests/WSSecurity/XML/sp/IssuedTokenTest.php index 9411d4f9..28ee5e94 100644 --- a/tests/WSSecurity/XML/sp/IssuedTokenTest.php +++ b/tests/WSSecurity/XML/sp/IssuedTokenTest.php @@ -27,7 +27,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractIssuedTokenType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuedTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/IssuerNameTest.php b/tests/WSSecurity/XML/sp/IssuerNameTest.php index d10f5b3e..c4414c36 100644 --- a/tests/WSSecurity/XML/sp/IssuerNameTest.php +++ b/tests/WSSecurity/XML/sp/IssuerNameTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\IssuerName * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuerNameTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/IssuerTest.php b/tests/WSSecurity/XML/sp/IssuerTest.php index 092db8c1..21b1e9a4 100644 --- a/tests/WSSecurity/XML/sp/IssuerTest.php +++ b/tests/WSSecurity/XML/sp/IssuerTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\Issuer * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuerTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/KerberosTokenTest.php b/tests/WSSecurity/XML/sp/KerberosTokenTest.php index ddbdc6f9..81f8224b 100644 --- a/tests/WSSecurity/XML/sp/KerberosTokenTest.php +++ b/tests/WSSecurity/XML/sp/KerberosTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KerberosTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/KeyValueTokenTest.php b/tests/WSSecurity/XML/sp/KeyValueTokenTest.php index 4ee610ca..d3e6097a 100644 --- a/tests/WSSecurity/XML/sp/KeyValueTokenTest.php +++ b/tests/WSSecurity/XML/sp/KeyValueTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractKeyValueTokenType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyValueTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/LaxTest.php b/tests/WSSecurity/XML/sp/LaxTest.php index c8709ad9..40a19413 100644 --- a/tests/WSSecurity/XML/sp/LaxTest.php +++ b/tests/WSSecurity/XML/sp/LaxTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LaxTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/LaxTsFirstTest.php b/tests/WSSecurity/XML/sp/LaxTsFirstTest.php index 06072e0e..bccfe6e0 100644 --- a/tests/WSSecurity/XML/sp/LaxTsFirstTest.php +++ b/tests/WSSecurity/XML/sp/LaxTsFirstTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LaxTsFirstTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/LaxTsLastTest.php b/tests/WSSecurity/XML/sp/LaxTsLastTest.php index a8598593..a06f6d62 100644 --- a/tests/WSSecurity/XML/sp/LaxTsLastTest.php +++ b/tests/WSSecurity/XML/sp/LaxTsLastTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LaxTsLastTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/LayoutTest.php b/tests/WSSecurity/XML/sp/LayoutTest.php index 57d7dd06..03a665f1 100644 --- a/tests/WSSecurity/XML/sp/LayoutTest.php +++ b/tests/WSSecurity/XML/sp/LayoutTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LayoutTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustNotSendAmendTest.php b/tests/WSSecurity/XML/sp/MustNotSendAmendTest.php index 5b69199b..f5eaacd3 100644 --- a/tests/WSSecurity/XML/sp/MustNotSendAmendTest.php +++ b/tests/WSSecurity/XML/sp/MustNotSendAmendTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustNotSendAmendTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustNotSendCancelTest.php b/tests/WSSecurity/XML/sp/MustNotSendCancelTest.php index bbd8e0bd..3859eee8 100644 --- a/tests/WSSecurity/XML/sp/MustNotSendCancelTest.php +++ b/tests/WSSecurity/XML/sp/MustNotSendCancelTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustNotSendCancelTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustNotSendRenewTest.php b/tests/WSSecurity/XML/sp/MustNotSendRenewTest.php index b1119184..ae5e975a 100644 --- a/tests/WSSecurity/XML/sp/MustNotSendRenewTest.php +++ b/tests/WSSecurity/XML/sp/MustNotSendRenewTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustNotSendRenewTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportClientChallengeTest.php b/tests/WSSecurity/XML/sp/MustSupportClientChallengeTest.php index 6018c62c..038fa6f5 100644 --- a/tests/WSSecurity/XML/sp/MustSupportClientChallengeTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportClientChallengeTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportClientChallengeTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportIssuedTokensTest.php b/tests/WSSecurity/XML/sp/MustSupportIssuedTokensTest.php index 6c2058c8..7a9c6a67 100644 --- a/tests/WSSecurity/XML/sp/MustSupportIssuedTokensTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportIssuedTokensTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportIssuedTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportRefEmbeddedTokenTest.php b/tests/WSSecurity/XML/sp/MustSupportRefEmbeddedTokenTest.php index 572da5da..91831ed4 100644 --- a/tests/WSSecurity/XML/sp/MustSupportRefEmbeddedTokenTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportRefEmbeddedTokenTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefEmbeddedTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportRefEncryptedKeyTest.php b/tests/WSSecurity/XML/sp/MustSupportRefEncryptedKeyTest.php index 6aaef9a9..2346c37a 100644 --- a/tests/WSSecurity/XML/sp/MustSupportRefEncryptedKeyTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportRefEncryptedKeyTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefEncryptedKeyTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportRefExternalURITest.php b/tests/WSSecurity/XML/sp/MustSupportRefExternalURITest.php index a88c4a52..3074d90b 100644 --- a/tests/WSSecurity/XML/sp/MustSupportRefExternalURITest.php +++ b/tests/WSSecurity/XML/sp/MustSupportRefExternalURITest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefExternalURITest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportRefIssuerSerialTest.php b/tests/WSSecurity/XML/sp/MustSupportRefIssuerSerialTest.php index 209b2e86..6f8a71c8 100644 --- a/tests/WSSecurity/XML/sp/MustSupportRefIssuerSerialTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportRefIssuerSerialTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefIssuerSerialTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportRefKeyIdentifierTest.php b/tests/WSSecurity/XML/sp/MustSupportRefKeyIdentifierTest.php index e8839711..8942a9a2 100644 --- a/tests/WSSecurity/XML/sp/MustSupportRefKeyIdentifierTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportRefKeyIdentifierTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefKeyIdentifierTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportRefThumbprintTest.php b/tests/WSSecurity/XML/sp/MustSupportRefThumbprintTest.php index 69779aa8..47d8e41a 100644 --- a/tests/WSSecurity/XML/sp/MustSupportRefThumbprintTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportRefThumbprintTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportRefThumbprintTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/MustSupportServerChallengeTest.php b/tests/WSSecurity/XML/sp/MustSupportServerChallengeTest.php index 09bc34e2..187a0963 100644 --- a/tests/WSSecurity/XML/sp/MustSupportServerChallengeTest.php +++ b/tests/WSSecurity/XML/sp/MustSupportServerChallengeTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MustSupportServerChallengeTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/NestedPolicyTypeTestTrait.php b/tests/WSSecurity/XML/sp/NestedPolicyTypeTestTrait.php index 2e3db3f5..53f5bd8e 100644 --- a/tests/WSSecurity/XML/sp/NestedPolicyTypeTestTrait.php +++ b/tests/WSSecurity/XML/sp/NestedPolicyTypeTestTrait.php @@ -13,7 +13,7 @@ /** * Class \SimpleSAML\WSSecurity\XML\sp\NestedPolicyTypeTestTrait * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait NestedPolicyTypeTestTrait { diff --git a/tests/WSSecurity/XML/sp/NoPasswordTest.php b/tests/WSSecurity/XML/sp/NoPasswordTest.php index c5afcd0d..cbe2d236 100644 --- a/tests/WSSecurity/XML/sp/NoPasswordTest.php +++ b/tests/WSSecurity/XML/sp/NoPasswordTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class NoPasswordTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/OnlySignEntireHeadersAndBodyTest.php b/tests/WSSecurity/XML/sp/OnlySignEntireHeadersAndBodyTest.php index 43faf5ee..37523f5d 100644 --- a/tests/WSSecurity/XML/sp/OnlySignEntireHeadersAndBodyTest.php +++ b/tests/WSSecurity/XML/sp/OnlySignEntireHeadersAndBodyTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class OnlySignEntireHeadersAndBodyTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/ProtectTokensTest.php b/tests/WSSecurity/XML/sp/ProtectTokensTest.php index cca0bb53..de9798aa 100644 --- a/tests/WSSecurity/XML/sp/ProtectTokensTest.php +++ b/tests/WSSecurity/XML/sp/ProtectTokensTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProtectTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/ProtectionTokenTest.php b/tests/WSSecurity/XML/sp/ProtectionTokenTest.php index 7945c740..9524bb25 100644 --- a/tests/WSSecurity/XML/sp/ProtectionTokenTest.php +++ b/tests/WSSecurity/XML/sp/ProtectionTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProtectionTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/QNameAssertionTypeTestTrait.php b/tests/WSSecurity/XML/sp/QNameAssertionTypeTestTrait.php index c8636738..f9e493b5 100644 --- a/tests/WSSecurity/XML/sp/QNameAssertionTypeTestTrait.php +++ b/tests/WSSecurity/XML/sp/QNameAssertionTypeTestTrait.php @@ -12,7 +12,7 @@ /** * Class \SimpleSAML\WSSecurity\XML\sp\QNameAssertionTypeTestTrait * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ trait QNameAssertionTypeTestTrait { diff --git a/tests/WSSecurity/XML/sp/RecipientEncryptionTokenTest.php b/tests/WSSecurity/XML/sp/RecipientEncryptionTokenTest.php index a524dda0..b96fa022 100644 --- a/tests/WSSecurity/XML/sp/RecipientEncryptionTokenTest.php +++ b/tests/WSSecurity/XML/sp/RecipientEncryptionTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RecipientEncryptionTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RecipientSignatureTokenTest.php b/tests/WSSecurity/XML/sp/RecipientSignatureTokenTest.php index 36718697..3ac199c1 100644 --- a/tests/WSSecurity/XML/sp/RecipientSignatureTokenTest.php +++ b/tests/WSSecurity/XML/sp/RecipientSignatureTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RecipientSignatureTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RecipientTokenTest.php b/tests/WSSecurity/XML/sp/RecipientTokenTest.php index e2b292fe..fcfc4748 100644 --- a/tests/WSSecurity/XML/sp/RecipientTokenTest.php +++ b/tests/WSSecurity/XML/sp/RecipientTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RecipientTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RelTokenTest.php b/tests/WSSecurity/XML/sp/RelTokenTest.php index b0d0568d..c88b1377 100644 --- a/tests/WSSecurity/XML/sp/RelTokenTest.php +++ b/tests/WSSecurity/XML/sp/RelTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RelTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequestSecurityTokenTemplateTest.php b/tests/WSSecurity/XML/sp/RequestSecurityTokenTemplateTest.php index 1c8edb57..0df18b20 100644 --- a/tests/WSSecurity/XML/sp/RequestSecurityTokenTemplateTest.php +++ b/tests/WSSecurity/XML/sp/RequestSecurityTokenTemplateTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractRequestSecurityTokenTemplateType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenTemplateTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireAppliesToTest.php b/tests/WSSecurity/XML/sp/RequireAppliesToTest.php index b7cb3995..57dbdd90 100644 --- a/tests/WSSecurity/XML/sp/RequireAppliesToTest.php +++ b/tests/WSSecurity/XML/sp/RequireAppliesToTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireAppliesToTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireClientCertificateTest.php b/tests/WSSecurity/XML/sp/RequireClientCertificateTest.php index 0bb7bee2..45b2b5ed 100644 --- a/tests/WSSecurity/XML/sp/RequireClientCertificateTest.php +++ b/tests/WSSecurity/XML/sp/RequireClientCertificateTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireClientCertificateTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireClientEntropyTest.php b/tests/WSSecurity/XML/sp/RequireClientEntropyTest.php index c95f70ad..1d402b9a 100644 --- a/tests/WSSecurity/XML/sp/RequireClientEntropyTest.php +++ b/tests/WSSecurity/XML/sp/RequireClientEntropyTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireClientEntropyTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireDerivedKeysTest.php b/tests/WSSecurity/XML/sp/RequireDerivedKeysTest.php index 46db6960..167cd4a5 100644 --- a/tests/WSSecurity/XML/sp/RequireDerivedKeysTest.php +++ b/tests/WSSecurity/XML/sp/RequireDerivedKeysTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireDerivedKeysTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireEmbeddedTokenReferenceTest.php b/tests/WSSecurity/XML/sp/RequireEmbeddedTokenReferenceTest.php index 1273898e..deffc5df 100644 --- a/tests/WSSecurity/XML/sp/RequireEmbeddedTokenReferenceTest.php +++ b/tests/WSSecurity/XML/sp/RequireEmbeddedTokenReferenceTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireEmbeddedTokenReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireExplicitDerivedKeysTest.php b/tests/WSSecurity/XML/sp/RequireExplicitDerivedKeysTest.php index 65a989dd..e9d18cd9 100644 --- a/tests/WSSecurity/XML/sp/RequireExplicitDerivedKeysTest.php +++ b/tests/WSSecurity/XML/sp/RequireExplicitDerivedKeysTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireExplicitDerivedKeysTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireExternalUriReferenceTest.php b/tests/WSSecurity/XML/sp/RequireExternalUriReferenceTest.php index 2e364e01..9b4ef9b4 100644 --- a/tests/WSSecurity/XML/sp/RequireExternalUriReferenceTest.php +++ b/tests/WSSecurity/XML/sp/RequireExternalUriReferenceTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireExternalUriReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireImpliedDerivedKeysTest.php b/tests/WSSecurity/XML/sp/RequireImpliedDerivedKeysTest.php index 06b9eae2..1b1a5e13 100644 --- a/tests/WSSecurity/XML/sp/RequireImpliedDerivedKeysTest.php +++ b/tests/WSSecurity/XML/sp/RequireImpliedDerivedKeysTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireImpliedDerivedKeysTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireInternalReferenceTest.php b/tests/WSSecurity/XML/sp/RequireInternalReferenceTest.php index d3212961..b8729d1e 100644 --- a/tests/WSSecurity/XML/sp/RequireInternalReferenceTest.php +++ b/tests/WSSecurity/XML/sp/RequireInternalReferenceTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireInternalReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireIssuerSerialReferenceTest.php b/tests/WSSecurity/XML/sp/RequireIssuerSerialReferenceTest.php index ff2c4250..a82911c4 100644 --- a/tests/WSSecurity/XML/sp/RequireIssuerSerialReferenceTest.php +++ b/tests/WSSecurity/XML/sp/RequireIssuerSerialReferenceTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireIssuerSerialReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireKeyIdentifierReferenceTest.php b/tests/WSSecurity/XML/sp/RequireKeyIdentifierReferenceTest.php index 1de0637d..0ccb8adc 100644 --- a/tests/WSSecurity/XML/sp/RequireKeyIdentifierReferenceTest.php +++ b/tests/WSSecurity/XML/sp/RequireKeyIdentifierReferenceTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireKeyIdentifierReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireRequestSecurityTokenCollectionTest.php b/tests/WSSecurity/XML/sp/RequireRequestSecurityTokenCollectionTest.php index 02a7f5bf..bb2b5cc2 100644 --- a/tests/WSSecurity/XML/sp/RequireRequestSecurityTokenCollectionTest.php +++ b/tests/WSSecurity/XML/sp/RequireRequestSecurityTokenCollectionTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireRequestSecurityTokenCollectionTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireServerEntropyTest.php b/tests/WSSecurity/XML/sp/RequireServerEntropyTest.php index 95c32c81..778b87ee 100644 --- a/tests/WSSecurity/XML/sp/RequireServerEntropyTest.php +++ b/tests/WSSecurity/XML/sp/RequireServerEntropyTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireServerEntropyTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireSignatureConfirmationTest.php b/tests/WSSecurity/XML/sp/RequireSignatureConfirmationTest.php index 435e3621..13340441 100644 --- a/tests/WSSecurity/XML/sp/RequireSignatureConfirmationTest.php +++ b/tests/WSSecurity/XML/sp/RequireSignatureConfirmationTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireSignatureConfirmationTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequireThumbprintReferenceTest.php b/tests/WSSecurity/XML/sp/RequireThumbprintReferenceTest.php index ab39f9c7..9241ff55 100644 --- a/tests/WSSecurity/XML/sp/RequireThumbprintReferenceTest.php +++ b/tests/WSSecurity/XML/sp/RequireThumbprintReferenceTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequireThumbprintReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequiredElementsTest.php b/tests/WSSecurity/XML/sp/RequiredElementsTest.php index c523d4a9..4bed7311 100644 --- a/tests/WSSecurity/XML/sp/RequiredElementsTest.php +++ b/tests/WSSecurity/XML/sp/RequiredElementsTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSerElementsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequiredElementsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RequiredPartsTest.php b/tests/WSSecurity/XML/sp/RequiredPartsTest.php index 8f6903e3..297e7db1 100644 --- a/tests/WSSecurity/XML/sp/RequiredPartsTest.php +++ b/tests/WSSecurity/XML/sp/RequiredPartsTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractReqPartsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequiredPartsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/RsaKeyValueTest.php b/tests/WSSecurity/XML/sp/RsaKeyValueTest.php index f391e7bb..def49ace 100644 --- a/tests/WSSecurity/XML/sp/RsaKeyValueTest.php +++ b/tests/WSSecurity/XML/sp/RsaKeyValueTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RsaKeyValueTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SC13SecurityContextTokenTest.php b/tests/WSSecurity/XML/sp/SC13SecurityContextTokenTest.php index 23021308..aefe42f1 100644 --- a/tests/WSSecurity/XML/sp/SC13SecurityContextTokenTest.php +++ b/tests/WSSecurity/XML/sp/SC13SecurityContextTokenTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SC13SecurityContextTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SOAPNormalization10Test.php b/tests/WSSecurity/XML/sp/SOAPNormalization10Test.php index f20fee95..8799c78d 100644 --- a/tests/WSSecurity/XML/sp/SOAPNormalization10Test.php +++ b/tests/WSSecurity/XML/sp/SOAPNormalization10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SOAPNormalization10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/STRTransform10Test.php b/tests/WSSecurity/XML/sp/STRTransform10Test.php index 26f5f20b..6e07a211 100644 --- a/tests/WSSecurity/XML/sp/STRTransform10Test.php +++ b/tests/WSSecurity/XML/sp/STRTransform10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class STRTransform10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SamlTokenTest.php b/tests/WSSecurity/XML/sp/SamlTokenTest.php index 59ad28fb..f7edc4fd 100644 --- a/tests/WSSecurity/XML/sp/SamlTokenTest.php +++ b/tests/WSSecurity/XML/sp/SamlTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SamlTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SecureConversationTokenTest.php b/tests/WSSecurity/XML/sp/SecureConversationTokenTest.php index 7e8e6da6..08bac834 100644 --- a/tests/WSSecurity/XML/sp/SecureConversationTokenTest.php +++ b/tests/WSSecurity/XML/sp/SecureConversationTokenTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSecureConversationTokenType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecureConversationTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SecurityContextTokenTest.php b/tests/WSSecurity/XML/sp/SecurityContextTokenTest.php index 5dae3a84..be13200a 100644 --- a/tests/WSSecurity/XML/sp/SecurityContextTokenTest.php +++ b/tests/WSSecurity/XML/sp/SecurityContextTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityContextTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignatureTokenTest.php b/tests/WSSecurity/XML/sp/SignatureTokenTest.php index 17954e3d..92d220f0 100644 --- a/tests/WSSecurity/XML/sp/SignatureTokenTest.php +++ b/tests/WSSecurity/XML/sp/SignatureTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignatureTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignedElementsTest.php b/tests/WSSecurity/XML/sp/SignedElementsTest.php index 3d7f97dd..4099fdfc 100644 --- a/tests/WSSecurity/XML/sp/SignedElementsTest.php +++ b/tests/WSSecurity/XML/sp/SignedElementsTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSerElementsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedElementsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignedEncryptedSupportingTokensTest.php b/tests/WSSecurity/XML/sp/SignedEncryptedSupportingTokensTest.php index 3455e480..61c38a72 100644 --- a/tests/WSSecurity/XML/sp/SignedEncryptedSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/SignedEncryptedSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedEncryptedSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignedEndorsingEncryptedSupportingTokensTest.php b/tests/WSSecurity/XML/sp/SignedEndorsingEncryptedSupportingTokensTest.php index a9429a7a..ce8ddd1d 100644 --- a/tests/WSSecurity/XML/sp/SignedEndorsingEncryptedSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/SignedEndorsingEncryptedSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedEndorsingEncryptedSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignedEndorsingSupportingTokensTest.php b/tests/WSSecurity/XML/sp/SignedEndorsingSupportingTokensTest.php index 8c189b91..fa75d8d5 100644 --- a/tests/WSSecurity/XML/sp/SignedEndorsingSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/SignedEndorsingSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedEndorsingSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignedPartsTest.php b/tests/WSSecurity/XML/sp/SignedPartsTest.php index 1149546a..4d9664fb 100644 --- a/tests/WSSecurity/XML/sp/SignedPartsTest.php +++ b/tests/WSSecurity/XML/sp/SignedPartsTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSePartsType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedPartsTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SignedSupportingTokensTest.php b/tests/WSSecurity/XML/sp/SignedSupportingTokensTest.php index 79ba9982..663d6b68 100644 --- a/tests/WSSecurity/XML/sp/SignedSupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/SignedSupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignedSupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SpnegoContextTokenTest.php b/tests/WSSecurity/XML/sp/SpnegoContextTokenTest.php index 08986d48..f34188f9 100644 --- a/tests/WSSecurity/XML/sp/SpnegoContextTokenTest.php +++ b/tests/WSSecurity/XML/sp/SpnegoContextTokenTest.php @@ -26,7 +26,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpnegoContextTokenType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SpnegoContextTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/StrictTest.php b/tests/WSSecurity/XML/sp/StrictTest.php index 95d5bbb4..540fc13d 100644 --- a/tests/WSSecurity/XML/sp/StrictTest.php +++ b/tests/WSSecurity/XML/sp/StrictTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class StrictTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SupportingTokensTest.php b/tests/WSSecurity/XML/sp/SupportingTokensTest.php index e50b82ad..c50f8bdc 100644 --- a/tests/WSSecurity/XML/sp/SupportingTokensTest.php +++ b/tests/WSSecurity/XML/sp/SupportingTokensTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SupportingTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/SymmetricBindingTest.php b/tests/WSSecurity/XML/sp/SymmetricBindingTest.php index f9bb41d3..77caa1b2 100644 --- a/tests/WSSecurity/XML/sp/SymmetricBindingTest.php +++ b/tests/WSSecurity/XML/sp/SymmetricBindingTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SymmetricBindingTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/TransportBindingTest.php b/tests/WSSecurity/XML/sp/TransportBindingTest.php index 51efd121..454a13ca 100644 --- a/tests/WSSecurity/XML/sp/TransportBindingTest.php +++ b/tests/WSSecurity/XML/sp/TransportBindingTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TransportBindingTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/TransportTokenTest.php b/tests/WSSecurity/XML/sp/TransportTokenTest.php index 258a04d4..92565dfa 100644 --- a/tests/WSSecurity/XML/sp/TransportTokenTest.php +++ b/tests/WSSecurity/XML/sp/TransportTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TransportTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/TripleDesRsa15Test.php b/tests/WSSecurity/XML/sp/TripleDesRsa15Test.php index 7fa636c2..11d52a49 100644 --- a/tests/WSSecurity/XML/sp/TripleDesRsa15Test.php +++ b/tests/WSSecurity/XML/sp/TripleDesRsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesRsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/TripleDesSha256Rsa15Test.php b/tests/WSSecurity/XML/sp/TripleDesSha256Rsa15Test.php index fc515e5a..4d8cda35 100644 --- a/tests/WSSecurity/XML/sp/TripleDesSha256Rsa15Test.php +++ b/tests/WSSecurity/XML/sp/TripleDesSha256Rsa15Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesSha256Rsa15Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/TripleDesSha256Test.php b/tests/WSSecurity/XML/sp/TripleDesSha256Test.php index d3061a80..b36fae02 100644 --- a/tests/WSSecurity/XML/sp/TripleDesSha256Test.php +++ b/tests/WSSecurity/XML/sp/TripleDesSha256Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesSha256Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/TripleDesTest.php b/tests/WSSecurity/XML/sp/TripleDesTest.php index 064d3a07..4bdbf51a 100644 --- a/tests/WSSecurity/XML/sp/TripleDesTest.php +++ b/tests/WSSecurity/XML/sp/TripleDesTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TripleDesTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Trust13Test.php b/tests/WSSecurity/XML/sp/Trust13Test.php index 51c54565..433e764e 100644 --- a/tests/WSSecurity/XML/sp/Trust13Test.php +++ b/tests/WSSecurity/XML/sp/Trust13Test.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Trust13Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/UsernameTokenTest.php b/tests/WSSecurity/XML/sp/UsernameTokenTest.php index 461c6599..f0c45453 100644 --- a/tests/WSSecurity/XML/sp/UsernameTokenTest.php +++ b/tests/WSSecurity/XML/sp/UsernameTokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UsernameTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Wss10Test.php b/tests/WSSecurity/XML/sp/Wss10Test.php index 29ad31a3..61044059 100644 --- a/tests/WSSecurity/XML/sp/Wss10Test.php +++ b/tests/WSSecurity/XML/sp/Wss10Test.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Wss10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/Wss11Test.php b/tests/WSSecurity/XML/sp/Wss11Test.php index 56baa9fc..96d48458 100644 --- a/tests/WSSecurity/XML/sp/Wss11Test.php +++ b/tests/WSSecurity/XML/sp/Wss11Test.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractNestedPolicyType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class Wss11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssGssKerberosV5ApReqToken11Test.php b/tests/WSSecurity/XML/sp/WssGssKerberosV5ApReqToken11Test.php index d89687eb..70a68405 100644 --- a/tests/WSSecurity/XML/sp/WssGssKerberosV5ApReqToken11Test.php +++ b/tests/WSSecurity/XML/sp/WssGssKerberosV5ApReqToken11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssGssKerberosV5ApReqToken11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssKerberosV5ApReqToken11Test.php b/tests/WSSecurity/XML/sp/WssKerberosV5ApReqToken11Test.php index 2717a45b..d2ceb9bd 100644 --- a/tests/WSSecurity/XML/sp/WssKerberosV5ApReqToken11Test.php +++ b/tests/WSSecurity/XML/sp/WssKerberosV5ApReqToken11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssKerberosV5ApReqToken11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssRelV10Token10Test.php b/tests/WSSecurity/XML/sp/WssRelV10Token10Test.php index c6576d16..c3f3da94 100644 --- a/tests/WSSecurity/XML/sp/WssRelV10Token10Test.php +++ b/tests/WSSecurity/XML/sp/WssRelV10Token10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV10Token10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssRelV10Token11Test.php b/tests/WSSecurity/XML/sp/WssRelV10Token11Test.php index 8a727669..fe9a5eb9 100644 --- a/tests/WSSecurity/XML/sp/WssRelV10Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssRelV10Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV10Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssRelV20Token10Test.php b/tests/WSSecurity/XML/sp/WssRelV20Token10Test.php index b42b6e78..55bdb026 100644 --- a/tests/WSSecurity/XML/sp/WssRelV20Token10Test.php +++ b/tests/WSSecurity/XML/sp/WssRelV20Token10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV20Token10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssRelV20Token11Test.php b/tests/WSSecurity/XML/sp/WssRelV20Token11Test.php index 5306cc24..2d9cfe03 100644 --- a/tests/WSSecurity/XML/sp/WssRelV20Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssRelV20Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssRelV20Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssSamlV11Token10Test.php b/tests/WSSecurity/XML/sp/WssSamlV11Token10Test.php index 369b3087..e618f560 100644 --- a/tests/WSSecurity/XML/sp/WssSamlV11Token10Test.php +++ b/tests/WSSecurity/XML/sp/WssSamlV11Token10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssSamlV11Token10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssSamlV11Token11Test.php b/tests/WSSecurity/XML/sp/WssSamlV11Token11Test.php index edc0f229..9bb2f832 100644 --- a/tests/WSSecurity/XML/sp/WssSamlV11Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssSamlV11Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssSamlV11Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssSamlV20Token11Test.php b/tests/WSSecurity/XML/sp/WssSamlV20Token11Test.php index a08c06ec..1ffb3ae1 100644 --- a/tests/WSSecurity/XML/sp/WssSamlV20Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssSamlV20Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssSamlV20Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssUsernameToken10Test.php b/tests/WSSecurity/XML/sp/WssUsernameToken10Test.php index c07d58e9..7067f13c 100644 --- a/tests/WSSecurity/XML/sp/WssUsernameToken10Test.php +++ b/tests/WSSecurity/XML/sp/WssUsernameToken10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssUsernameToken10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssUsernameToken11Test.php b/tests/WSSecurity/XML/sp/WssUsernameToken11Test.php index b4c69107..ae99d262 100644 --- a/tests/WSSecurity/XML/sp/WssUsernameToken11Test.php +++ b/tests/WSSecurity/XML/sp/WssUsernameToken11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssUsernameToken11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509Pkcs7Token10Test.php b/tests/WSSecurity/XML/sp/WssX509Pkcs7Token10Test.php index ce0931ff..f91d198d 100644 --- a/tests/WSSecurity/XML/sp/WssX509Pkcs7Token10Test.php +++ b/tests/WSSecurity/XML/sp/WssX509Pkcs7Token10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509Pkcs7Token10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509Pkcs7Token11Test.php b/tests/WSSecurity/XML/sp/WssX509Pkcs7Token11Test.php index dea8d8a4..03f4b5ae 100644 --- a/tests/WSSecurity/XML/sp/WssX509Pkcs7Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssX509Pkcs7Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509Pkcs7Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token10Test.php b/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token10Test.php index ca1c062d..ee93f4ba 100644 --- a/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token10Test.php +++ b/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509PkiPathV1Token10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token11Test.php b/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token11Test.php index 3e01bc53..2aaa0cd1 100644 --- a/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssX509PkiPathV1Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509PkiPathV1Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509V1Token11Test.php b/tests/WSSecurity/XML/sp/WssX509V1Token11Test.php index 73fcf9b7..e6586d40 100644 --- a/tests/WSSecurity/XML/sp/WssX509V1Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssX509V1Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509V1Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509V3Token10Test.php b/tests/WSSecurity/XML/sp/WssX509V3Token10Test.php index e4150c8c..c5ff0454 100644 --- a/tests/WSSecurity/XML/sp/WssX509V3Token10Test.php +++ b/tests/WSSecurity/XML/sp/WssX509V3Token10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509V3Token10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/WssX509V3Token11Test.php b/tests/WSSecurity/XML/sp/WssX509V3Token11Test.php index 97d52456..e1615080 100644 --- a/tests/WSSecurity/XML/sp/WssX509V3Token11Test.php +++ b/tests/WSSecurity/XML/sp/WssX509V3Token11Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class WssX509V3Token11Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/X509TokenTest.php b/tests/WSSecurity/XML/sp/X509TokenTest.php index 350f1f27..778bb8b8 100644 --- a/tests/WSSecurity/XML/sp/X509TokenTest.php +++ b/tests/WSSecurity/XML/sp/X509TokenTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractTokenAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class X509TokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/sp/XPath10Test.php b/tests/WSSecurity/XML/sp/XPath10Test.php index e67841b5..e304ed50 100644 --- a/tests/WSSecurity/XML/sp/XPath10Test.php +++ b/tests/WSSecurity/XML/sp/XPath10Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class XPath10Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/XPathFilter20Test.php b/tests/WSSecurity/XML/sp/XPathFilter20Test.php index 81b97049..ea9167a0 100644 --- a/tests/WSSecurity/XML/sp/XPathFilter20Test.php +++ b/tests/WSSecurity/XML/sp/XPathFilter20Test.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractQNameAssertionType * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class XPathFilter20Test extends TestCase { diff --git a/tests/WSSecurity/XML/sp/XPathTest.php b/tests/WSSecurity/XML/sp/XPathTest.php index f51f1dc8..19ad4a70 100644 --- a/tests/WSSecurity/XML/sp/XPathTest.php +++ b/tests/WSSecurity/XML/sp/XPathTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\sp\XPath * @covers \SimpleSAML\WSSecurity\XML\sp\AbstractSpElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class XPathTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ActionTest.php b/tests/WSSecurity/XML/wsa/ActionTest.php index 09dbf91b..f1ebadf8 100644 --- a/tests/WSSecurity/XML/wsa/ActionTest.php +++ b/tests/WSSecurity/XML/wsa/ActionTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\Action * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedURIType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ActionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/AddressTest.php b/tests/WSSecurity/XML/wsa/AddressTest.php index e80bba4a..146d7f9b 100644 --- a/tests/WSSecurity/XML/wsa/AddressTest.php +++ b/tests/WSSecurity/XML/wsa/AddressTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\Address * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedURIType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AddressTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/EndpointReferenceTest.php b/tests/WSSecurity/XML/wsa/EndpointReferenceTest.php index 300ec8d9..1ee3507f 100644 --- a/tests/WSSecurity/XML/wsa/EndpointReferenceTest.php +++ b/tests/WSSecurity/XML/wsa/EndpointReferenceTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\EndpointReference * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EndpointReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/FaultToTest.php b/tests/WSSecurity/XML/wsa/FaultToTest.php index 3dbebebe..3c6535c4 100644 --- a/tests/WSSecurity/XML/wsa/FaultToTest.php +++ b/tests/WSSecurity/XML/wsa/FaultToTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\FaultTo * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FaultToTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/FromTest.php b/tests/WSSecurity/XML/wsa/FromTest.php index a4ca9a85..6b9d62a7 100644 --- a/tests/WSSecurity/XML/wsa/FromTest.php +++ b/tests/WSSecurity/XML/wsa/FromTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\From * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class FromTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/MessageIDTest.php b/tests/WSSecurity/XML/wsa/MessageIDTest.php index 2adae67d..0fc067a5 100644 --- a/tests/WSSecurity/XML/wsa/MessageIDTest.php +++ b/tests/WSSecurity/XML/wsa/MessageIDTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\MessageID * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedURIType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MessageIDTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/MetadataTest.php b/tests/WSSecurity/XML/wsa/MetadataTest.php index 3361f614..8015e019 100644 --- a/tests/WSSecurity/XML/wsa/MetadataTest.php +++ b/tests/WSSecurity/XML/wsa/MetadataTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\Metadata * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MetadataTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ProblemActionTest.php b/tests/WSSecurity/XML/wsa/ProblemActionTest.php index edd1e28f..1e12bd93 100644 --- a/tests/WSSecurity/XML/wsa/ProblemActionTest.php +++ b/tests/WSSecurity/XML/wsa/ProblemActionTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\ProblemAction * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractProblemActionType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProblemActionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ProblemHeaderQNameTest.php b/tests/WSSecurity/XML/wsa/ProblemHeaderQNameTest.php index 33682a99..046d4ce1 100644 --- a/tests/WSSecurity/XML/wsa/ProblemHeaderQNameTest.php +++ b/tests/WSSecurity/XML/wsa/ProblemHeaderQNameTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\ProblemHeaderQName * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedQNameType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProblemHeaderQNameTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ProblemIRITest.php b/tests/WSSecurity/XML/wsa/ProblemIRITest.php index 7e14f236..f60b3f6e 100644 --- a/tests/WSSecurity/XML/wsa/ProblemIRITest.php +++ b/tests/WSSecurity/XML/wsa/ProblemIRITest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\ProblemIRI * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedURIType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProblemIRITest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ReferenceParametersTest.php b/tests/WSSecurity/XML/wsa/ReferenceParametersTest.php index 0b6f8bc6..58dd3c1f 100644 --- a/tests/WSSecurity/XML/wsa/ReferenceParametersTest.php +++ b/tests/WSSecurity/XML/wsa/ReferenceParametersTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\ReferenceParameters * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceParametersTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/RelatesToTest.php b/tests/WSSecurity/XML/wsa/RelatesToTest.php index 45f71875..6b79fe03 100644 --- a/tests/WSSecurity/XML/wsa/RelatesToTest.php +++ b/tests/WSSecurity/XML/wsa/RelatesToTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\RelatesTo * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RelatesToTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ReplyToTest.php b/tests/WSSecurity/XML/wsa/ReplyToTest.php index 1e4169a9..7891544e 100644 --- a/tests/WSSecurity/XML/wsa/ReplyToTest.php +++ b/tests/WSSecurity/XML/wsa/ReplyToTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\ReplyTo * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReplyToTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/RetryAfterTest.php b/tests/WSSecurity/XML/wsa/RetryAfterTest.php index 66d612b1..7160fcc3 100644 --- a/tests/WSSecurity/XML/wsa/RetryAfterTest.php +++ b/tests/WSSecurity/XML/wsa/RetryAfterTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\RetryAfter * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedLongType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RetryAfterTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/SoapActionTest.php b/tests/WSSecurity/XML/wsa/SoapActionTest.php index 432e3666..3080ab0d 100644 --- a/tests/WSSecurity/XML/wsa/SoapActionTest.php +++ b/tests/WSSecurity/XML/wsa/SoapActionTest.php @@ -17,7 +17,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsa\SoapAction * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SoapActionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsa/ToTest.php b/tests/WSSecurity/XML/wsa/ToTest.php index 89003e78..1cd40364 100644 --- a/tests/WSSecurity/XML/wsa/ToTest.php +++ b/tests/WSSecurity/XML/wsa/ToTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\To * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractAttributedURIType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ToTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsp/AllTest.php b/tests/WSSecurity/XML/wsp/AllTest.php index 4d4a6952..040e0286 100644 --- a/tests/WSSecurity/XML/wsp/AllTest.php +++ b/tests/WSSecurity/XML/wsp/AllTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsp\All * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractOperatorContentType * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractWspElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AllTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsp/AppliesToTest.php b/tests/WSSecurity/XML/wsp/AppliesToTest.php index 356aeb39..58300d2f 100644 --- a/tests/WSSecurity/XML/wsp/AppliesToTest.php +++ b/tests/WSSecurity/XML/wsp/AppliesToTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsp\AppliesTo * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractwspElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AppliesToTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsp/ExactlyOneTest.php b/tests/WSSecurity/XML/wsp/ExactlyOneTest.php index e10dd039..427eabff 100644 --- a/tests/WSSecurity/XML/wsp/ExactlyOneTest.php +++ b/tests/WSSecurity/XML/wsp/ExactlyOneTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsp\ExactlyOne * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractOperatorContentType * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractWspElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ExactlyOneTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsp/PolicyAttachmentTest.php b/tests/WSSecurity/XML/wsp/PolicyAttachmentTest.php index 648be927..a5c53000 100644 --- a/tests/WSSecurity/XML/wsp/PolicyAttachmentTest.php +++ b/tests/WSSecurity/XML/wsp/PolicyAttachmentTest.php @@ -28,7 +28,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsp\PolicyAttachment * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractWspElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PolicyAttachmentTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsp/PolicyReferenceTest.php b/tests/WSSecurity/XML/wsp/PolicyReferenceTest.php index 461bd951..82636ba0 100644 --- a/tests/WSSecurity/XML/wsp/PolicyReferenceTest.php +++ b/tests/WSSecurity/XML/wsp/PolicyReferenceTest.php @@ -20,7 +20,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsp\PolicyReference * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractWspElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PolicyReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsp/PolicyTest.php b/tests/WSSecurity/XML/wsp/PolicyTest.php index ff581502..2761accd 100644 --- a/tests/WSSecurity/XML/wsp/PolicyTest.php +++ b/tests/WSSecurity/XML/wsp/PolicyTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsp\Policy * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractOperatorContentType * @covers \SimpleSAML\WSSecurity\XML\wsp\AbstractWspElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PolicyTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/BinarySecurityTokenTest.php b/tests/WSSecurity/XML/wsse/BinarySecurityTokenTest.php index f32dc972..1d51b9ca 100644 --- a/tests/WSSecurity/XML/wsse/BinarySecurityTokenTest.php +++ b/tests/WSSecurity/XML/wsse/BinarySecurityTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractEncodedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractAttributedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BinarySecurityTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/EmbeddedTest.php b/tests/WSSecurity/XML/wsse/EmbeddedTest.php index 5ff9414d..65c38558 100644 --- a/tests/WSSecurity/XML/wsse/EmbeddedTest.php +++ b/tests/WSSecurity/XML/wsse/EmbeddedTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\Embedded * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractEmbeddedType * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EmbeddedTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/KeyIdentifierTest.php b/tests/WSSecurity/XML/wsse/KeyIdentifierTest.php index 37564e8b..2c335271 100644 --- a/tests/WSSecurity/XML/wsse/KeyIdentifierTest.php +++ b/tests/WSSecurity/XML/wsse/KeyIdentifierTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractEncodedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractAttributedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyIdentifierTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/NonceTest.php b/tests/WSSecurity/XML/wsse/NonceTest.php index ae684436..01236ecf 100644 --- a/tests/WSSecurity/XML/wsse/NonceTest.php +++ b/tests/WSSecurity/XML/wsse/NonceTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractEncodedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractAttributedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class NonceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/PasswordTest.php b/tests/WSSecurity/XML/wsse/PasswordTest.php index 5ecf14b4..f6a6eb97 100644 --- a/tests/WSSecurity/XML/wsse/PasswordTest.php +++ b/tests/WSSecurity/XML/wsse/PasswordTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractPasswordString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractAttributedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PasswordTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/ReferenceTest.php b/tests/WSSecurity/XML/wsse/ReferenceTest.php index de6309db..e806302d 100644 --- a/tests/WSSecurity/XML/wsse/ReferenceTest.php +++ b/tests/WSSecurity/XML/wsse/ReferenceTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\Reference * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/SecurityTest.php b/tests/WSSecurity/XML/wsse/SecurityTest.php index 1e722359..6b70df57 100644 --- a/tests/WSSecurity/XML/wsse/SecurityTest.php +++ b/tests/WSSecurity/XML/wsse/SecurityTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\Security * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractSecurityHeaderType * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/SecurityTokenReferenceTest.php b/tests/WSSecurity/XML/wsse/SecurityTokenReferenceTest.php index 9c62df44..60b7a4c9 100644 --- a/tests/WSSecurity/XML/wsse/SecurityTokenReferenceTest.php +++ b/tests/WSSecurity/XML/wsse/SecurityTokenReferenceTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\SecurityTokenReference * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractSecurityTokenReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SecurityTokenReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/TransformationParametersTest.php b/tests/WSSecurity/XML/wsse/TransformationParametersTest.php index ea7f39b9..82144ada 100644 --- a/tests/WSSecurity/XML/wsse/TransformationParametersTest.php +++ b/tests/WSSecurity/XML/wsse/TransformationParametersTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\TransformationParameters * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractTransformationParametersType * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TransformationParametersTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/UsernameTest.php b/tests/WSSecurity/XML/wsse/UsernameTest.php index 1492711b..fab06686 100644 --- a/tests/WSSecurity/XML/wsse/UsernameTest.php +++ b/tests/WSSecurity/XML/wsse/UsernameTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\Username * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractAttributedString * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UsernameTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsse/UsernameTokenTest.php b/tests/WSSecurity/XML/wsse/UsernameTokenTest.php index 22e12d36..b2f106aa 100644 --- a/tests/WSSecurity/XML/wsse/UsernameTokenTest.php +++ b/tests/WSSecurity/XML/wsse/UsernameTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsse\UsernameToken * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractUsernameTokenType * @covers \SimpleSAML\WSSecurity\XML\wsse\AbstractWsseElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UsernameTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/AllowPostdatingTest.php b/tests/WSSecurity/XML/wst/AllowPostdatingTest.php index 2c833194..45e07b26 100644 --- a/tests/WSSecurity/XML/wst/AllowPostdatingTest.php +++ b/tests/WSSecurity/XML/wst/AllowPostdatingTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AllowPostdating * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AllowPostdatingTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/AuthenticationTypeTest.php b/tests/WSSecurity/XML/wst/AuthenticationTypeTest.php index 27fb60ab..19e7eb34 100644 --- a/tests/WSSecurity/XML/wst/AuthenticationTypeTest.php +++ b/tests/WSSecurity/XML/wst/AuthenticationTypeTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AuthenticationType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AuthenticationTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/AuthenticatorTest.php b/tests/WSSecurity/XML/wst/AuthenticatorTest.php index 31dc40a9..5cd21911 100644 --- a/tests/WSSecurity/XML/wst/AuthenticatorTest.php +++ b/tests/WSSecurity/XML/wst/AuthenticatorTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractAuthenticatorType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class AuthenticatorTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/BinaryExchangeTest.php b/tests/WSSecurity/XML/wst/BinaryExchangeTest.php index 728006aa..b72927a2 100644 --- a/tests/WSSecurity/XML/wst/BinaryExchangeTest.php +++ b/tests/WSSecurity/XML/wst/BinaryExchangeTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractBinaryExchangeType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BinaryExchangeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/BinarySecretTest.php b/tests/WSSecurity/XML/wst/BinarySecretTest.php index f1551809..320f5cdc 100644 --- a/tests/WSSecurity/XML/wst/BinarySecretTest.php +++ b/tests/WSSecurity/XML/wst/BinarySecretTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractBinarySecretType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class BinarySecretTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/CancelTargetTest.php b/tests/WSSecurity/XML/wst/CancelTargetTest.php index 5766db12..7e5a6623 100644 --- a/tests/WSSecurity/XML/wst/CancelTargetTest.php +++ b/tests/WSSecurity/XML/wst/CancelTargetTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractCancelTargetType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CancelTargetTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/CanonicalizationAlgorithmTest.php b/tests/WSSecurity/XML/wst/CanonicalizationAlgorithmTest.php index 9a5ef7ed..fb0ba399 100644 --- a/tests/WSSecurity/XML/wst/CanonicalizationAlgorithmTest.php +++ b/tests/WSSecurity/XML/wst/CanonicalizationAlgorithmTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\CanonicalizationAlgorithm * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CanonicalizationAlgorithmTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ChallengeTest.php b/tests/WSSecurity/XML/wst/ChallengeTest.php index 7802c893..8c098215 100644 --- a/tests/WSSecurity/XML/wst/ChallengeTest.php +++ b/tests/WSSecurity/XML/wst/ChallengeTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\Challenge * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ChallengeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ClaimsTest.php b/tests/WSSecurity/XML/wst/ClaimsTest.php index 81dbd9c6..b88c36a5 100644 --- a/tests/WSSecurity/XML/wst/ClaimsTest.php +++ b/tests/WSSecurity/XML/wst/ClaimsTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractClaimsType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ClaimsTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/CodeTest.php b/tests/WSSecurity/XML/wst/CodeTest.php index bf02d57b..74f70b1d 100644 --- a/tests/WSSecurity/XML/wst/CodeTest.php +++ b/tests/WSSecurity/XML/wst/CodeTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractStatusCodeOpenEnum * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CodeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/CombinedHashTest.php b/tests/WSSecurity/XML/wst/CombinedHashTest.php index 63dce630..7bcedfed 100644 --- a/tests/WSSecurity/XML/wst/CombinedHashTest.php +++ b/tests/WSSecurity/XML/wst/CombinedHashTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\CombinedHash * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CombinedHashTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ComputedKeyAlgorithmTest.php b/tests/WSSecurity/XML/wst/ComputedKeyAlgorithmTest.php index f4af95a2..5bf99bd1 100644 --- a/tests/WSSecurity/XML/wst/ComputedKeyAlgorithmTest.php +++ b/tests/WSSecurity/XML/wst/ComputedKeyAlgorithmTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\ComputedKeyAlgorithm * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ComputedKeyAlgorithmTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ComputedKeyTest.php b/tests/WSSecurity/XML/wst/ComputedKeyTest.php index a9e10f29..e2b788b9 100644 --- a/tests/WSSecurity/XML/wst/ComputedKeyTest.php +++ b/tests/WSSecurity/XML/wst/ComputedKeyTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractComputedKeyOpenEnum * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ComputedKeyTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/DelegatableTest.php b/tests/WSSecurity/XML/wst/DelegatableTest.php index acc09432..760a628c 100644 --- a/tests/WSSecurity/XML/wst/DelegatableTest.php +++ b/tests/WSSecurity/XML/wst/DelegatableTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\Delegatable * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DelegatableTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/DelegateToTest.php b/tests/WSSecurity/XML/wst/DelegateToTest.php index 7cbf76f3..cf3d1a7c 100644 --- a/tests/WSSecurity/XML/wst/DelegateToTest.php +++ b/tests/WSSecurity/XML/wst/DelegateToTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractDelegateToType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DelegateToTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/EncryptWithTest.php b/tests/WSSecurity/XML/wst/EncryptWithTest.php index 3477db73..52928df4 100644 --- a/tests/WSSecurity/XML/wst/EncryptWithTest.php +++ b/tests/WSSecurity/XML/wst/EncryptWithTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\EncryptWith * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptWithTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/EncryptionAlgorithmTest.php b/tests/WSSecurity/XML/wst/EncryptionAlgorithmTest.php index 6e6716c5..39d48c3d 100644 --- a/tests/WSSecurity/XML/wst/EncryptionAlgorithmTest.php +++ b/tests/WSSecurity/XML/wst/EncryptionAlgorithmTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\EncryptionAlgorithm * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptionAlgorithmTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/EncryptionTest.php b/tests/WSSecurity/XML/wst/EncryptionTest.php index 4a603479..91c78a58 100644 --- a/tests/WSSecurity/XML/wst/EncryptionTest.php +++ b/tests/WSSecurity/XML/wst/EncryptionTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractEncryptionType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EncryptionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/EntropyTest.php b/tests/WSSecurity/XML/wst/EntropyTest.php index 73fb0df7..a3a718df 100644 --- a/tests/WSSecurity/XML/wst/EntropyTest.php +++ b/tests/WSSecurity/XML/wst/EntropyTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractEntropyType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class EntropyTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ForwardableTest.php b/tests/WSSecurity/XML/wst/ForwardableTest.php index c2bef21f..fdbc0f00 100644 --- a/tests/WSSecurity/XML/wst/ForwardableTest.php +++ b/tests/WSSecurity/XML/wst/ForwardableTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\Forwardable * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ForwardableTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/IssuedTokensTest.php b/tests/WSSecurity/XML/wst/IssuedTokensTest.php index b64ea5d6..9540ee30 100644 --- a/tests/WSSecurity/XML/wst/IssuedTokensTest.php +++ b/tests/WSSecurity/XML/wst/IssuedTokensTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuedTokensTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/IssuerTest.php b/tests/WSSecurity/XML/wst/IssuerTest.php index 56a9e2a9..afed5b3a 100644 --- a/tests/WSSecurity/XML/wst/IssuerTest.php +++ b/tests/WSSecurity/XML/wst/IssuerTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\Issuer * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractEndpointReferenceType * @covers \SimpleSAML\WSSecurity\XML\wsa\AbstractWsaElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IssuerTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/KeyExchangeTokenTest.php b/tests/WSSecurity/XML/wst/KeyExchangeTokenTest.php index 4539d4e5..9d6cb624 100644 --- a/tests/WSSecurity/XML/wst/KeyExchangeTokenTest.php +++ b/tests/WSSecurity/XML/wst/KeyExchangeTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractKeyExchangeTokenType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyExchangeTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/KeySizeTest.php b/tests/WSSecurity/XML/wst/KeySizeTest.php index 04dc9bdc..9846c5e2 100644 --- a/tests/WSSecurity/XML/wst/KeySizeTest.php +++ b/tests/WSSecurity/XML/wst/KeySizeTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\KeySize * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeySizeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/KeyTypeTest.php b/tests/WSSecurity/XML/wst/KeyTypeTest.php index 74966982..9a92ed98 100644 --- a/tests/WSSecurity/XML/wst/KeyTypeTest.php +++ b/tests/WSSecurity/XML/wst/KeyTypeTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractKeyTypeOpenEnum * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/KeyWrapAlgorithmTest.php b/tests/WSSecurity/XML/wst/KeyWrapAlgorithmTest.php index 8c62cc5b..cd24d99c 100644 --- a/tests/WSSecurity/XML/wst/KeyWrapAlgorithmTest.php +++ b/tests/WSSecurity/XML/wst/KeyWrapAlgorithmTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\KeyWrapAlgorithm * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class KeyWrapAlgorithmTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/LifetimeTest.php b/tests/WSSecurity/XML/wst/LifetimeTest.php index 386cf7f0..1b246608 100644 --- a/tests/WSSecurity/XML/wst/LifetimeTest.php +++ b/tests/WSSecurity/XML/wst/LifetimeTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractLifetimeType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LifetimeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/OnBehalfOfTest.php b/tests/WSSecurity/XML/wst/OnBehalfOfTest.php index 8a0f3ea0..8e183e45 100644 --- a/tests/WSSecurity/XML/wst/OnBehalfOfTest.php +++ b/tests/WSSecurity/XML/wst/OnBehalfOfTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractOnBehalfOfType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class OnBehalfOfTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ParticipantTest.php b/tests/WSSecurity/XML/wst/ParticipantTest.php index 53794f91..986a4c1a 100644 --- a/tests/WSSecurity/XML/wst/ParticipantTest.php +++ b/tests/WSSecurity/XML/wst/ParticipantTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractParticipantType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ParticipantTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ParticipantsTest.php b/tests/WSSecurity/XML/wst/ParticipantsTest.php index 5abb9004..d06182e6 100644 --- a/tests/WSSecurity/XML/wst/ParticipantsTest.php +++ b/tests/WSSecurity/XML/wst/ParticipantsTest.php @@ -25,7 +25,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractParticipantsType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ParticipantsTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/PrimaryTest.php b/tests/WSSecurity/XML/wst/PrimaryTest.php index 47a8573c..4787d509 100644 --- a/tests/WSSecurity/XML/wst/PrimaryTest.php +++ b/tests/WSSecurity/XML/wst/PrimaryTest.php @@ -21,7 +21,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractParticipantType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class PrimaryTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ProofEncryptionTest.php b/tests/WSSecurity/XML/wst/ProofEncryptionTest.php index d3605eb7..f1d805e8 100644 --- a/tests/WSSecurity/XML/wst/ProofEncryptionTest.php +++ b/tests/WSSecurity/XML/wst/ProofEncryptionTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractProofEncryptionType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ProofEncryptionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ReasonTest.php b/tests/WSSecurity/XML/wst/ReasonTest.php index da08cb68..1e4b1a5f 100644 --- a/tests/WSSecurity/XML/wst/ReasonTest.php +++ b/tests/WSSecurity/XML/wst/ReasonTest.php @@ -17,7 +17,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\Reason * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ReasonTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RenewTargetTest.php b/tests/WSSecurity/XML/wst/RenewTargetTest.php index df2bfe6d..8287f5b9 100644 --- a/tests/WSSecurity/XML/wst/RenewTargetTest.php +++ b/tests/WSSecurity/XML/wst/RenewTargetTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRenewTargetType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RenewTargetTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RenewingTest.php b/tests/WSSecurity/XML/wst/RenewingTest.php index f22eb52f..6aca2b3c 100644 --- a/tests/WSSecurity/XML/wst/RenewingTest.php +++ b/tests/WSSecurity/XML/wst/RenewingTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRenewingType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RenewingTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestKETTest.php b/tests/WSSecurity/XML/wst/RequestKETTest.php index 390a1a61..e778ed17 100644 --- a/tests/WSSecurity/XML/wst/RequestKETTest.php +++ b/tests/WSSecurity/XML/wst/RequestKETTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\RequestKET * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestKETTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestSecurityTokenCollectionTest.php b/tests/WSSecurity/XML/wst/RequestSecurityTokenCollectionTest.php index 944a9809..82889290 100644 --- a/tests/WSSecurity/XML/wst/RequestSecurityTokenCollectionTest.php +++ b/tests/WSSecurity/XML/wst/RequestSecurityTokenCollectionTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestSecurityTokenCollectionType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenCollectionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseCollectionTest.php b/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseCollectionTest.php index 575f5693..683d2e76 100644 --- a/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseCollectionTest.php +++ b/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseCollectionTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestSecurityTokenResponseCollectionType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenResponseCollectionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseTest.php b/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseTest.php index e5b89651..645b2875 100644 --- a/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseTest.php +++ b/tests/WSSecurity/XML/wst/RequestSecurityTokenResponseTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestSecurityTokenResponseType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenResponseTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestSecurityTokenTest.php b/tests/WSSecurity/XML/wst/RequestSecurityTokenTest.php index b5919c5c..30800342 100644 --- a/tests/WSSecurity/XML/wst/RequestSecurityTokenTest.php +++ b/tests/WSSecurity/XML/wst/RequestSecurityTokenTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestSecurityTokenType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestSecurityTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestTypeTest.php b/tests/WSSecurity/XML/wst/RequestTypeTest.php index c014a909..688f6e66 100644 --- a/tests/WSSecurity/XML/wst/RequestTypeTest.php +++ b/tests/WSSecurity/XML/wst/RequestTypeTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestTypeOpenEnum * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestedAttachedReferenceTest.php b/tests/WSSecurity/XML/wst/RequestedAttachedReferenceTest.php index 7ca9e0a4..5fd4ad54 100644 --- a/tests/WSSecurity/XML/wst/RequestedAttachedReferenceTest.php +++ b/tests/WSSecurity/XML/wst/RequestedAttachedReferenceTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestedReferenceType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedAttachedReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestedProofTokenTest.php b/tests/WSSecurity/XML/wst/RequestedProofTokenTest.php index 3f0a67dc..cf2bb3dc 100644 --- a/tests/WSSecurity/XML/wst/RequestedProofTokenTest.php +++ b/tests/WSSecurity/XML/wst/RequestedProofTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestedProofTokenType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedProofTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestedSecurityTokenTest.php b/tests/WSSecurity/XML/wst/RequestedSecurityTokenTest.php index 7f8dfc26..36ebb2b3 100644 --- a/tests/WSSecurity/XML/wst/RequestedSecurityTokenTest.php +++ b/tests/WSSecurity/XML/wst/RequestedSecurityTokenTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestedSecurityTokenType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedSecurityTokenTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestedTokenCancelledTest.php b/tests/WSSecurity/XML/wst/RequestedTokenCancelledTest.php index e5f9c502..f1e3027b 100644 --- a/tests/WSSecurity/XML/wst/RequestedTokenCancelledTest.php +++ b/tests/WSSecurity/XML/wst/RequestedTokenCancelledTest.php @@ -18,7 +18,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\RequestedTokenCancelled * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedTokenCancelledTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/RequestedUnattachedReferenceTest.php b/tests/WSSecurity/XML/wst/RequestedUnattachedReferenceTest.php index f49d9b6b..4c2dd542 100644 --- a/tests/WSSecurity/XML/wst/RequestedUnattachedReferenceTest.php +++ b/tests/WSSecurity/XML/wst/RequestedUnattachedReferenceTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractRequestedReferenceType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class RequestedUnattachedReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/SignChallengeResponseTest.php b/tests/WSSecurity/XML/wst/SignChallengeResponseTest.php index 49ce95c0..26bec58a 100644 --- a/tests/WSSecurity/XML/wst/SignChallengeResponseTest.php +++ b/tests/WSSecurity/XML/wst/SignChallengeResponseTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractSignChallengeType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignChallengeResponseTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/SignChallengeTest.php b/tests/WSSecurity/XML/wst/SignChallengeTest.php index dcfb5a6e..6416ad80 100644 --- a/tests/WSSecurity/XML/wst/SignChallengeTest.php +++ b/tests/WSSecurity/XML/wst/SignChallengeTest.php @@ -24,7 +24,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractSignChallengeType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignChallengeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/SignWithTest.php b/tests/WSSecurity/XML/wst/SignWithTest.php index 1b1992df..2a448618 100644 --- a/tests/WSSecurity/XML/wst/SignWithTest.php +++ b/tests/WSSecurity/XML/wst/SignWithTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\SignWith * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignWithTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/SignatureAlgorithmTest.php b/tests/WSSecurity/XML/wst/SignatureAlgorithmTest.php index ded26c87..1c9605ab 100644 --- a/tests/WSSecurity/XML/wst/SignatureAlgorithmTest.php +++ b/tests/WSSecurity/XML/wst/SignatureAlgorithmTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\SignatureAlgorithm * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class SignatureAlgorithmTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/StatusTest.php b/tests/WSSecurity/XML/wst/StatusTest.php index e9ad3864..dc70caa6 100644 --- a/tests/WSSecurity/XML/wst/StatusTest.php +++ b/tests/WSSecurity/XML/wst/StatusTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractStatusType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class StatusTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/TokenTypeTest.php b/tests/WSSecurity/XML/wst/TokenTypeTest.php index 8cc1d01f..fd05bbe1 100644 --- a/tests/WSSecurity/XML/wst/TokenTypeTest.php +++ b/tests/WSSecurity/XML/wst/TokenTypeTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\TokenType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TokenTypeTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/UseKeyTest.php b/tests/WSSecurity/XML/wst/UseKeyTest.php index 14e271d4..b4f08212 100644 --- a/tests/WSSecurity/XML/wst/UseKeyTest.php +++ b/tests/WSSecurity/XML/wst/UseKeyTest.php @@ -23,7 +23,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractUseKeyType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class UseKeyTest extends TestCase { diff --git a/tests/WSSecurity/XML/wst/ValidateTargetTest.php b/tests/WSSecurity/XML/wst/ValidateTargetTest.php index b2aa886c..c47980fd 100644 --- a/tests/WSSecurity/XML/wst/ValidateTargetTest.php +++ b/tests/WSSecurity/XML/wst/ValidateTargetTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractValidateTargetType * @covers \SimpleSAML\WSSecurity\XML\wst\AbstractWstElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ValidateTargetTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsu/CreatedTest.php b/tests/WSSecurity/XML/wsu/CreatedTest.php index b216b848..c84bbba5 100644 --- a/tests/WSSecurity/XML/wsu/CreatedTest.php +++ b/tests/WSSecurity/XML/wsu/CreatedTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsu\Created * @covers \SimpleSAML\WSSecurity\XML\wsu\AbstractAttributedDateTime * @covers \SimpleSAML\WSSecurity\XML\wsu\AbstractWsuElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class CreatedTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsu/ExpiresTest.php b/tests/WSSecurity/XML/wsu/ExpiresTest.php index e684a57a..46f1beb1 100644 --- a/tests/WSSecurity/XML/wsu/ExpiresTest.php +++ b/tests/WSSecurity/XML/wsu/ExpiresTest.php @@ -20,7 +20,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsu\Expires * @covers \SimpleSAML\WSSecurity\XML\wsu\AbstractAttributedDateTime * @covers \SimpleSAML\WSSecurity\XML\wsu\AbstractWsuElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class ExpiresTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsu/TimestampTest.php b/tests/WSSecurity/XML/wsu/TimestampTest.php index b40a9fce..d9a6ccbb 100644 --- a/tests/WSSecurity/XML/wsu/TimestampTest.php +++ b/tests/WSSecurity/XML/wsu/TimestampTest.php @@ -22,7 +22,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsu\Timestamp * @covers \SimpleSAML\WSSecurity\XML\wsu\AbstractTimestamp * @covers \SimpleSAML\WSSecurity\XML\wsu\AbstractWsuElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class TimestampTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/DialectTest.php b/tests/WSSecurity/XML/wsx/DialectTest.php index f6ed722f..aa863ec2 100644 --- a/tests/WSSecurity/XML/wsx/DialectTest.php +++ b/tests/WSSecurity/XML/wsx/DialectTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsx\Dialect * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class DialectTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/GetMetadataTest.php b/tests/WSSecurity/XML/wsx/GetMetadataTest.php index f804f286..f9191898 100644 --- a/tests/WSSecurity/XML/wsx/GetMetadataTest.php +++ b/tests/WSSecurity/XML/wsx/GetMetadataTest.php @@ -21,7 +21,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsx\GetMetadata * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class GetMetadataTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/IdentifierTest.php b/tests/WSSecurity/XML/wsx/IdentifierTest.php index f1a487d1..38a727f9 100644 --- a/tests/WSSecurity/XML/wsx/IdentifierTest.php +++ b/tests/WSSecurity/XML/wsx/IdentifierTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsx\Identifier * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class IdentifierTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/LocationTest.php b/tests/WSSecurity/XML/wsx/LocationTest.php index 7fb867e6..3468e54d 100644 --- a/tests/WSSecurity/XML/wsx/LocationTest.php +++ b/tests/WSSecurity/XML/wsx/LocationTest.php @@ -19,7 +19,7 @@ * @covers \SimpleSAML\WSSecurity\XML\wsx\Location * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement * - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class LocationTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/MetadataReferenceTest.php b/tests/WSSecurity/XML/wsx/MetadataReferenceTest.php index 47e2089e..3ccdba5b 100644 --- a/tests/WSSecurity/XML/wsx/MetadataReferenceTest.php +++ b/tests/WSSecurity/XML/wsx/MetadataReferenceTest.php @@ -23,7 +23,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsx\MetadataReference * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MetadataReferenceTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/MetadataSectionTest.php b/tests/WSSecurity/XML/wsx/MetadataSectionTest.php index 415812ae..8edc2e94 100644 --- a/tests/WSSecurity/XML/wsx/MetadataSectionTest.php +++ b/tests/WSSecurity/XML/wsx/MetadataSectionTest.php @@ -20,7 +20,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsx\MetadataSection * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MetadataSectionTest extends TestCase { diff --git a/tests/WSSecurity/XML/wsx/MetadataTest.php b/tests/WSSecurity/XML/wsx/MetadataTest.php index 07513947..b7ce824e 100644 --- a/tests/WSSecurity/XML/wsx/MetadataTest.php +++ b/tests/WSSecurity/XML/wsx/MetadataTest.php @@ -22,7 +22,7 @@ * * @covers \SimpleSAML\WSSecurity\XML\wsx\Metadata * @covers \SimpleSAML\WSSecurity\XML\wsx\AbstractWsxElement - * @package tvdijen/ws-security + * @package simplesamlphp/ws-security */ final class MetadataTest extends TestCase {