Completed
Push — master ( 15cb6d...86e5be )
by Nikolas
03:31
created

RenderedResult::__toString()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace rtens\domin\execution;
3
4
class RenderedResult implements ExecutionResult {
5
6
    private $output;
7
8
    public function __construct($output) {
9
        $this->output = $output;
10
    }
11
12
    /**
13
     * @return mixed
14
     */
15
    public function getOutput() {
16
        return $this->output;
17
    }
18
}