Client.php 682 Bytes
<?php

/**
 * Created by JetBrains PhpStorm.
 * User: elkan
 * Date: 14-8-5
 * Time: 下午6:04
 * To change this template use File | Settings | File Templates.
 */
class YHMSupport_Models_Downlog_Client {

    /**
     *
     * @var YHMSupport_Models_Downlog_Dao 
     */ 
	private static $dao;

    /**
     *
     * @return YHMSupport_Models_Downlog_Dao
     */
    static private function dao() {
        if (empty(self::$dao)) {
            self::$dao = new YHMSupport_Models_Downlog_Dao();
        }
        return self::$dao;
    }

    /**
     * 获取搜索的banner
     * @return type
     */
    static function add() {
        return self::dao()->add();
    }

   

}