aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bshaffer/oauth2-server-php/src/OAuth2/OpenID/Controller/AuthorizeControllerInterface.php
blob: b4967c317c8305e85902d98586093974dd4f5a56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?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';
}