aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bshaffer/oauth2-server-php/src/OAuth2/OpenID/Controller/AuthorizeControllerInterface.php
blob: 1e231d844515d34fbb0a50b5c841d7ef6cc5c3e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php

namespace OAuth2\OpenID\Controller;

interface AuthorizeControllerInterface
{
    const RESPONSE_TYPE_ID_TOKEN = 'id_token';
    const RESPONSE_TYPE_ID_TOKEN_TOKEN = 'id_token token';
    const RESPONSE_TYPE_CODE_ID_TOKEN  = 'code id_token';
}