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

FinallyResult::__construct()   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 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
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