Completed
Push — master ( c52910...66a65c )
by lyu
02:53 queued 47s
created

TerminateResult   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 17
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Kaylyu\Alipay\Kernel\Decorators;
4
5
/**
6
 * Class TerminateResult.
7
 */
8
class TerminateResult
9
{
10
    /**
11
     * @var mixed
12
     */
13
    public $content;
14
15
    /**
16
     * FinallyResult constructor.
17
     *
18
     * @param mixed $content
19
     */
20
    public function __construct($content)
21
    {
22
        $this->content = $content;
23
    }
24
}
25