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

FinallyResult   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
5
namespace JinWeChat\Kernel\Decorators;
6
7
/**
8
 * Class FinallyResult.
9
 *
10
 */
11
class FinallyResult
12
{
13
    /**
14
     * @var mixed
15
     */
16
    public $content;
17
18
    /**
19
     * FinallyResult constructor.
20
     *
21
     * @param mixed $content
22
     */
23
    public function __construct($content)
24
    {
25
        $this->content = $content;
26
    }
27
}
28