1 | <?php |
||
22 | class ComponentDelegate implements WeChatComponentInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var \EasyWeChat\OpenPlatform\Application |
||
26 | */ |
||
27 | protected $app; |
||
28 | |||
29 | /** |
||
30 | * ComponentDelegate Constructor. |
||
31 | * |
||
32 | * @param \EasyWeChat\OpenPlatform\Application $app |
||
33 | */ |
||
34 | public function __construct(Application $app) |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getAppId() |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | public function getToken() |
||
54 | } |
||
55 |