• File: client.class.php
  • Full Path: /home/bravrvjk/hpgt.org/wp-content/plugins/unlimited-elements-for-elementor/inc_php/framework/http/client.class.php
  • Date Modified: 02/12/2024 8:02 PM
  • File size: 175 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

abstract class UEHttp{

	/**
	 * Create a new request instance.
	 *
	 * @return UEHttpRequest
	 */
	public static function make(){

		return new UEHttpRequest();
	}

}