Completed
Push — master ( 65c93a...df2332 )
by Akihito
02:29
created

Result::setOutput()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace Ackintosh\Snidel;
3
4
class Result
5
{
6
    /** @var mix */
7
    private $return;
8
9
    /** @var string */
10
    private $output;
11
12
    /**
13
     * set return
14
     *
15
     * @param   mix     $return
16
     * @return  void
17
     */
18
    public function setReturn($return)
19
    {
20
        $this->return = $return;
21
    }
22
23
    public function getReturn()
24
    {
25
        return $this->return;
26
    }
27
28
    /**
29
     * set output
30
     *
31
     * @param   string  $output
32
     * @return  void
33
     */
34
    public function setOutput($output)
35
    {
36
        $this->output = $output;
37
    }
38
39
    /**
40
     * return output
41
     *
42
     * @return  string
43
     */
44
    public function getOutput()
45
    {
46
        return $this->output;
47
    }
48
}
49