Test Failed
Push — master ( 12e206...e5b474 )
by wannanbigpig
03:10 queued 11s
created

Application::__call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 2
dl 0
loc 3
ccs 0
cts 3
cp 0
crap 2
rs 10
c 1
b 0
f 0
1
<?php
2
/*
3
 * This file is part of the wannanbigpig/alipay-sdk-php.
4
 *
5
 * (c) wannanbigpig <[email protected]>
6
 *
7
 * This source file is subject to the MIT license that is bundled
8
 * with this source code in the file LICENSE.
9
 */
10
11
namespace EasyAlipay\Tripartite;
12
13
use EasyAlipay\Kernel\ServiceContainer;
14
15
/**
16
 * Class Application
17
 *
18
 * @author   liuml  <[email protected]>
19
 * @DateTime 2019-07-18  16:13
20
 *
21
 * @property \EasyAlipay\Tripartite\Agent\Client         $agent
22
 * @property \EasyAlipay\Tripartite\ServiceMarket\Client $serviceMarket
23
 */
24
class Application extends ServiceContainer
25
{
26
27
    /**
28
     * @var array
29
     */
30
    protected $providers = [
31
        'agent' => Agent\Client::class,
32
        'serviceMarket' => ServiceMarket\Client::class,
33
    ];
34
}
35