1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-19 14:46:14 +08:00
koogua 1d2f1dd266 1.更改模块继承基类
2.升级layui到2.6.8
3.升级腾讯云播放器
4.点播增加外链支持
2021-06-12 12:34:40 +08:00

38 lines
578 B
PHP

<?php
namespace App\Providers;
use Phalcon\Di\Injectable;
use Phalcon\DiInterface;
abstract class Provider extends Injectable implements ProviderInterface
{
/**
* Service name
*
* @var string
*/
protected $serviceName;
/**
* Service provider constructor
*
* @param DiInterface $di
*/
public function __construct(DiInterface $di)
{
$this->setDI($di);
}
/**
* Get service name
*
* @return string
*/
public function getName()
{
return $this->serviceName;
}
}