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'; }