| Server IP : 209.172.2.30 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux server103.orangehost.com 3.10.0-962.3.2.lve1.5.78.el7.x86_64 #1 SMP Fri Feb 17 08:16:56 UTC 2023 x86_64 User : elieihic ( 1117) PHP Version : 8.1.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/elieihic/ceaconsulting.rw/wp-includes/Requests/src/ |
Upload File : |
<?php
/**
* Authentication provider interface
*
* @package Requests\Authentication
*/
namespace WpOrg\Requests;
use WpOrg\Requests\Hooks;
/**
* Authentication provider interface
*
* Implement this interface to act as an authentication provider.
*
* Parameters should be passed via the constructor where possible, as this
* makes it much easier for users to use your provider.
*
* @see \WpOrg\Requests\Hooks
*
* @package Requests\Authentication
*/
interface Auth {
/**
* Register hooks as needed
*
* This method is called in {@see \WpOrg\Requests\Requests::request()} when the user
* has set an instance as the 'auth' option. Use this callback to register all the
* hooks you'll need.
*
* @see \WpOrg\Requests\Hooks::register()
* @param \WpOrg\Requests\Hooks $hooks Hook system
*/
public function register(Hooks $hooks);
}