Interface.php
361 Bytes
<?php
/**
* Created by PhpStorm.
* User: liuziyang
* Date: 14-2-17
* Time: 19:34
*/
interface YHMAuth_Package_Interface
{
function getAuthUrl();
static function auth($webSite);
function location();
/**
* @param array $data
* @return YHMAuth_Package_Profile
*/
function getUserProfile(YHMAuth_Package_Profile $data);
}