1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 20:06:09 +08:00
course-tencent-cloud/app/Providers/ProviderInterface.php
2020-04-03 19:20:46 +08:00

24 lines
359 B
PHP

<?php
namespace App\Providers;
use Phalcon\Di\InjectionAwareInterface;
interface ProviderInterface extends InjectionAwareInterface
{
/**
* Register application service.
*
* @return mixed
*/
public function register();
/**
* Gets the Service name.
*
* @return string
*/
public function getName();
}