Skip to content

Commit be33c60

Browse files
committed
Bump test-framework and fix codesniffer issues
1 parent 1c44ecc commit be33c60

File tree

164 files changed

+213
-42
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+213
-42
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"beste/clock": "~3.0.0",
4242
"mockery/mockery": "~1.6.12",
4343
"simplesamlphp/composer-xmlprovider-installer": "~1.0.2",
44-
"simplesamlphp/simplesamlphp-test-framework": "~1.9.2"
44+
"simplesamlphp/simplesamlphp-test-framework": "~1.10.2"
4545
},
4646
"suggest": {
4747
"ext-soap": "*"

src/Assert/CustomAssertionTrait.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ trait CustomAssertionTrait
1515
{
1616
private static string $scheme_regex = '/^([a-z][a-z0-9\+\-\.]+[:])/i';
1717

18+
1819
/***********************************************************************************
1920
* NOTE: Custom assertions may be added below this line. *
2021
* They SHOULD be marked as `private` to ensure the call is forced *

src/Assertion/Processor.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public function decryptAssertions(ArrayCollection $assertions): ArrayCollection
6565
return $decrypted;
6666
}
6767

68+
6869
/**
6970
* @param \SimpleSAML\SAML2\Utilities\ArrayCollection $assertions Collection of decrypted assertions
7071
* @return \SimpleSAML\SAML2\Utilities\ArrayCollection Collection of processed assertions

src/Assertion/ProcessorBuilder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ private static function createSubjectConfirmationValidator(
120120
return $validator;
121121
}
122122

123+
123124
/**
124125
* @param \Psr\Log\LoggerInterface $logger
125126
* @param \SimpleSAML\SAML2\Certificate\PrivateKeyLoader $keyLoader

src/Binding.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@
44

55
namespace SimpleSAML\SAML2;
66

7-
use Psr\Http\Message\{ResponseInterface, ServerRequestInterface};
8-
use SimpleSAML\SAML2\Binding\{HTTPArtifact, HTTPPost, HTTPRedirect, SOAP};
7+
use Psr\Http\Message\ResponseInterface;
8+
use Psr\Http\Message\ServerRequestInterface;
9+
use SimpleSAML\SAML2\Binding\HTTPArtifact;
10+
use SimpleSAML\SAML2\Binding\HTTPPost;
11+
use SimpleSAML\SAML2\Binding\HTTPRedirect;
12+
use SimpleSAML\SAML2\Binding\SOAP;
913
use SimpleSAML\SAML2\Constants as C;
1014
use SimpleSAML\SAML2\Exception\Protocol\UnsupportedBindingException;
1115
use SimpleSAML\SAML2\XML\samlp\AbstractMessage;

src/Binding/HTTPArtifact.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class HTTPArtifact extends Binding implements AsynchronousBindingInterface, Rela
4646
{
4747
use RelayStateTrait;
4848

49+
4950
/**
5051
* @psalm-suppress UndefinedDocblockClass
5152
* @psalm-suppress UndefinedClass

src/Binding/HTTPPost.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class HTTPPost extends Binding implements AsynchronousBindingInterface, RelaySta
3131
{
3232
use RelayStateTrait;
3333

34+
3435
/**
3536
* Send a SAML 2 message using the HTTP-POST binding.
3637
*

src/Binding/HTTPRedirect.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class HTTPRedirect extends Binding implements AsynchronousBindingInterface, Rela
4242
{
4343
use RelayStateTrait;
4444

45+
4546
/**
4647
* Create the redirect URL for a message.
4748
*

src/Certificate/Key.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Key implements ArrayAccess
2323

2424
public const USAGE_ENCRYPTION = 'encryption';
2525

26+
2627
/** @var array */
2728
protected array $keyData = [];
2829

src/Compat/AbstractContainer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ abstract class AbstractContainer
2323
/** @var string */
2424
private const XSI_TYPE_PREFIX = '<xsi:type>';
2525

26+
2627
/** @var array */
2728
protected array $registry = [];
2829

0 commit comments

Comments
 (0)