![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/litesaml/lightsaml/src/Context/Profile/ |
<?php namespace LightSaml\Context\Profile; use LightSaml\Model\Assertion\Assertion; use LightSaml\Model\Assertion\EncryptedElement; class AssertionContext extends AbstractProfileContext { /** @var Assertion|null */ private $assertion; /** @var EncryptedElement|null */ private $encryptedAssertion; /** @var string */ private $id; /** * @return string */ public function getId() { return $this->id; } /** * @param string $id * * @return AssertionContext */ public function setId($id) { $this->id = $id; return $this; } /** * @return Assertion|null */ public function getAssertion() { return $this->assertion; } /** * @param Assertion $assertion * * @return AssertionContext */ public function setAssertion(Assertion $assertion = null) { $this->assertion = $assertion; return $this; } /** * @return EncryptedElement|null */ public function getEncryptedAssertion() { return $this->encryptedAssertion; } /** * @param EncryptedElement $encryptedAssertion * * @return AssertionContext */ public function setEncryptedAssertion(EncryptedElement $encryptedAssertion = null) { $this->encryptedAssertion = $encryptedAssertion; return $this; } }