1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24:
<?php
/**
* @link : http://www.loginradius.com
* @category : Clients
* @package : IHttpClient
* @author : LoginRadius Team
* @version : 5.0.1
* @license : https://opensource.org/licenses/MIT
*/
namespace LoginRadiusSDK\Clients;
/**
* Interface IHttpClient
*
* Used for Custom Client Library.
*
* @package LoginRadiusSDK\Clients
*/
interface IHttpClient
{
public function request($path, $query_array = array(), $options = array());
}