![]() 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/friendsofsymfony/oauth2-php/lib/Model/ |
<?php namespace OAuth2\Model; class OAuth2AuthCode extends OAuth2Token implements IOAuth2AuthCode { /** * @var null|string */ private $redirectUri; /** * @param string $clientId * @param string $token * @param null|integer $expiresAt * @param null|string $scope * @param mixed $data * @param null|string $redirectUri */ public function __construct($clientId, $token, $expiresAt = null, $scope = null, $data = null, $redirectUri = null) { parent::__construct($clientId, $token, $expiresAt, $scope, $data); $this->setRedirectUri($redirectUri); } /** * @param null|string $uri */ public function setRedirectUri($uri) { $this->redirectUri = $uri; } /** * {@inheritdoc} */ public function getRedirectUri() { return $this->redirectUri; } }