Application.php
393 Bytes
<?php
namespace PgServiceSdk;
use PgServiceSdk\Kernel\ServiceContainer;
/**
* Class Application
* @package PgServiceSdk
*
* @property \PgServiceSdk\Work\MemberClient $member
*/
class Application extends ServiceContainer
{
/**
* 应用的服务提供者
*
* @var array
*/
protected $providers = [
Work\ServiceProvider::class,
];
}