PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
league
/
oauth2-server
/
src
/
Grant
<?php /** * Abstract authorization grant. * * @author Julián Gutiérrez <juliangut@gmail.com> * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; abstract class AbstractAuthorizeGrant extends AbstractGrant { /** * @param string $uri * @param array $params * @param string $queryDelimiter * * @return string */ public function makeRedirectUri($uri, $params = [], $queryDelimiter = '?') { $uri .= (\strstr($uri, $queryDelimiter) === false) ? $queryDelimiter : '&'; return $uri . \http_build_query($params); } }
[-] GrantTypeInterface.php
[edit]
[-] PasswordGrant.php
[edit]
[-] ImplicitGrant.php
[edit]
[+]
..
[-] AbstractAuthorizeGrant.php
[edit]
[-] ClientCredentialsGrant.php
[edit]
[-] RefreshTokenGrant.php
[edit]
[-] AbstractGrant.php
[edit]
[-] AuthCodeGrant.php
[edit]