We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa82173 commit c88c97bCopy full SHA for c88c97b
2 files changed
README.md
@@ -59,13 +59,10 @@ Example:
59
// Create Issuer
60
$issuer = new \SimpleSAML\SAML2\XML\saml\Issuer('https://sp.example.edu');
61
62
- // Instantiate SAML2 Random utils
63
- $randomUtils = new \SimpleSAML\SAML2\Utils\Random();
64
-
65
// Set up an AuthnRequest
66
$request = new \SimpleSAML\SAML2\XML\samlp\AuthnRequest(
67
$issuer,
68
- $randomUtils->generateId(),
+ IDValue::generateId(),
69
null,
70
'https://idp.example.edu'
71
);
src/Utils/Random.php
0 commit comments