uawdijnntqw1x1x1
IP : 216.73.217.31
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
components
/
com_akeeba
/
.
/
.
/
Model
/
.
/
Oauth2
/
ProviderInterface.php
/
/
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\Backup\Site\Model\Oauth2; defined('_JEXEC') || die; use FOF40\Input\Input; /** * OAuth2 Helper provider interface * * @since 8.2.2 */ interface ProviderInterface { /** * Get the URL to redirect to for the first authentication step (consent screen). * * @return string * @since 8.4.0 */ public function getAuthenticationUrl(): string; /** * Handles the second step of the authentication (exchange code for tokens) * * @param Input $input The raw application input object * * @return TokenResponse * @since 8.4.0 */ public function handleResponse(Input $input): TokenResponse; /** * Handles exchanging a refresh token for an access token * * @param Input $input The raw application input object * * @return TokenResponse * @since 8.4.0 */ public function handleRefresh(Input $input): TokenResponse; public function getEngineNameForHumans(): string; }
/home/pteabiscqq/www/components/com_akeeba/././Model/./Oauth2/ProviderInterface.php