var/www/html/servotec-doerpen/wp-includes/Requests/src | uid:33
Auth.php [X]
<?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);
}
Auth/-O R D
Cookie/-O R D
Exception/-O R D
Proxy/-O R D
Response/-O R D
Transport/-O R D
Utility/-O R D
Auth.php860V E R D
Autoload.php9.1KV E R D
Cookie.php15KV E R D
HookManager.php709V E R D
Hooks.php3KV E R D
Ipv6.php5.5KV E R D
Iri.php29KV E R D
Port.php1.5KV E R D
Response.php4.2KV E R D
Ssl.php5.3KV E R D
Transport.php1.5KV E R D