AbstractService.class.php
315 Bytes
<?php
/**
* AbstractService.class.php
* Service 层基类
* @author: tangxingguo
* @version: $Id$
* @copyright: vchangyi.com
*/
namespace Common\Service;
abstract class AbstractService extends \Com\Service
{
// 构造方法
public function __construct()
{
parent::__construct();
}
}