mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
24 lines
359 B
PHP
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();
|
|
|
|
} |