blob: 55b91eb984bca80d9a009ac0e7f86711ae471d24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-08-13
*/
/**
* Class Command_AbstractCommand
*/
abstract class Command_AbstractCommand implements Command_CommandInterface
{
/**
* @var Input
*/
protected $input;
/**
* @var Output
*/
protected $output;
/**
* @return Input
*/
public function getInput()
{
return $this->input;
}
/**
* @param Input $input
*/
public function setInput(Input $input)
{
$this->input = $input;
}
/**
* @return null|Output
*/
public function getOutput()
{
return $this->output;
}
/**
* @param Output $output
*/
public function setOutput(Output $output)
{
$this->output = $output;
}
}
|