Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
fe685373
Commit
fe685373
authored
9 years ago
by
Jaime Perez Crespo
Browse files
Options
Downloads
Patches
Plain Diff
Fix phpdoc comments for SimpleSAML_Metadata_SAMLBuilder (broken data types).
parent
3a3e24e9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/SimpleSAML/Metadata/SAMLBuilder.php
+6
-6
6 additions, 6 deletions
lib/SimpleSAML/Metadata/SAMLBuilder.php
with
6 additions
and
6 deletions
lib/SimpleSAML/Metadata/SAMLBuilder.php
+
6
−
6
View file @
fe685373
...
...
@@ -15,7 +15,7 @@ class SimpleSAML_Metadata_SAMLBuilder
/**
* The EntityDescriptor we are building.
*
* @var
string
* @var
SAML2_XML_md_EntityDescriptor
*/
private
$entityDescriptor
;
...
...
@@ -23,7 +23,7 @@ class SimpleSAML_Metadata_SAMLBuilder
/**
* The maximum time in seconds the metadata should be cached.
*
* @var
int
|null
* @var
double
|null
*/
private
$maxCache
=
null
;
...
...
@@ -31,7 +31,7 @@ class SimpleSAML_Metadata_SAMLBuilder
/**
* The maximum time in seconds since the current time that this metadata should be considered valid.
*
* @var
int
|null
* @var
double
|null
*/
private
$maxDuration
=
null
;
...
...
@@ -40,8 +40,8 @@ class SimpleSAML_Metadata_SAMLBuilder
* Initialize the SAML builder.
*
* @param string $entityId The entity id of the entity.
* @param
int
|null $maxCache The maximum time in seconds the metadata should be cached. Defaults to null
* @param
int
|null $maxDuration The maximum time in seconds this metadata should be considered valid. Defaults
* @param
double
|null $maxCache The maximum time in seconds the metadata should be cached. Defaults to null
* @param
double
|null $maxDuration The maximum time in seconds this metadata should be considered valid. Defaults
* to null.
*/
public
function
__construct
(
$entityId
,
$maxCache
=
null
,
$maxDuration
=
null
)
...
...
@@ -322,7 +322,7 @@ class SimpleSAML_Metadata_SAMLBuilder
* @param array $endpoints The endpoints.
* @param bool $indexed Whether the endpoints should be indexed.
*
* @return SAML2_XML_md_
Indexed
EndpointType
[]|
SAML2_XML_md_EndpointType
[] An array of endpoint objects
.
* @return
array An array of endpoint objects, either
SAML2_XML_md_EndpointType
or
SAML2_XML_md_
Indexed
EndpointType.
*/
private
static
function
createEndpoints
(
array
$endpoints
,
$indexed
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment