Completed
Push — master ( 2dd47c...3d7f26 )
by do
02:42
created

TerminateResult   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 15
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

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