1 | <?php |
||
33 | abstract class AbstractMessage implements MessageInterface |
||
34 | { |
||
35 | /** @var ConfigInterface */ |
||
36 | protected $config; |
||
37 | |||
38 | /** @var InputInterface */ |
||
39 | protected $input; |
||
40 | |||
41 | /** @var OutputInterface */ |
||
42 | protected $output; |
||
43 | |||
44 | /** @var Command */ |
||
45 | protected $cliCommand; |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function getConfig() |
||
54 | |||
55 | /** |
||
56 | * @inheritdoc |
||
57 | */ |
||
58 | public function setConfig(ConfigInterface $config) |
||
62 | |||
63 | /** |
||
64 | * @inheritdoc |
||
65 | */ |
||
66 | public function getInput() |
||
70 | |||
71 | /** |
||
72 | * @inheritdoc |
||
73 | */ |
||
74 | public function setInput(InputInterface $input) |
||
78 | |||
79 | /** |
||
80 | * @inheritdoc |
||
81 | */ |
||
82 | public function getOutput() |
||
86 | |||
87 | /** |
||
88 | * @inheritdoc |
||
89 | */ |
||
90 | public function setOutput(OutputInterface $output) |
||
94 | |||
95 | /** |
||
96 | * @return Command |
||
97 | */ |
||
98 | public function getCliCommand() |
||
102 | |||
103 | /** |
||
104 | * @param Command $cliCommand |
||
105 | */ |
||
106 | public function setCliCommand(Command $cliCommand) |
||
110 | } |
||
111 |