ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
SAML2\Configuration\Destination Class Reference

Value Object representing the current destination. More...

+ Collaboration diagram for SAML2\Configuration\Destination:

Public Member Functions

 __construct ($destination)
 
 equals (Destination $otherDestination)
 
 __toString ()
 

Private Attributes

 $destination
 

Detailed Description

Value Object representing the current destination.

Definition at line 10 of file Destination.php.

Constructor & Destructor Documentation

◆ __construct()

SAML2\Configuration\Destination::__construct (   $destination)
Parameters
string$destination

Definition at line 20 of file Destination.php.

References SAML2\Configuration\Destination\$destination, and SAML2\Exception\InvalidArgumentException\invalidType().

21  {
22  if (!is_string($destination)) {
24  }
25 
26  $this->destination = $destination;
27  }
+ Here is the call graph for this function:

Member Function Documentation

◆ __toString()

SAML2\Configuration\Destination::__toString ( )

Definition at line 39 of file Destination.php.

References SAML2\Configuration\Destination\$destination.

◆ equals()

SAML2\Configuration\Destination::equals ( Destination  $otherDestination)
Parameters
\SAML2\Configuration\Destination$otherDestination
Returns
bool

Definition at line 34 of file Destination.php.

35  {
36  return $this->destination === $otherDestination->destination;
37  }

Field Documentation

◆ $destination

SAML2\Configuration\Destination::$destination
private

The documentation for this class was generated from the following file: