![]() 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/ |
<?php namespace OAuth2; /** * Storage engines that support the "Implicit" grant type should implement this interface * * @author Dave Rochwerger <[email protected]> * * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.2 */ interface IOAuth2GrantImplicit extends IOAuth2Storage { /** * The Implicit grant type supports a response type of "token". * * @var string * * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-1.4.2 * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.2 */ const RESPONSE_TYPE_TOKEN = OAuth2::RESPONSE_TYPE_ACCESS_TOKEN; }