Completed
Push — master ( 32869d...8a9333 )
by Carlos
04:33 queued 30s
created

AccessToken   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 16
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getCredentials() 0 6 1
1
<?php
2
3
/*
4
 * This file is part of the overtrue/wechat.
5
 *
6
 * (c) overtrue <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
namespace EasyWeChat\MiniProgram\Auth;
13
14
use EasyWeChat\Kernel\AccessToken as BaseAccessToken;
15
16
/**
17
 * Class AccessToken.
18
 *
19
 * @author mingyoung <[email protected]>
20
 */
21
class AccessToken extends BaseAccessToken
22
{
23
    /**
24
     * @var string
25
     */
26
    protected $endpointToGetToken = 'https://api.weixin.qq.com/cgi-bin/token';
27
28
    /**
29
     * {@inheritdoc}
30
     */
31 1
    protected function getCredentials(): array
32
    {
33
        return [
34 1
            'grant_type' => 'client_credential',
35 1
            'appid' => $this->app['config']['app_id'],
36 1
            'secret' => $this->app['config']['secret'],
37
        ];
38
    }
39
}
40