| 1 | <?php |
||
| 19 | class ExecutionEvent extends Event implements ExecutionEventInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var \Symfony\Component\Console\Output\OutputInterface |
||
| 23 | */ |
||
| 24 | private $output; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var \Gabrieljmj\Should\Report\Report |
||
| 28 | */ |
||
| 29 | private $report; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var \Gabrieljmj\Should\Template\TemplateInterface |
||
| 33 | */ |
||
| 34 | private $template; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 38 | */ |
||
| 39 | public function setOutput(OutputInterface $output) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param \Gabrieljmj\Should\Report\Report $report |
||
| 46 | */ |
||
| 47 | public function setReport(Report $report) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param \Gabrieljmj\Should\Template\TemplateInterface $template |
||
| 54 | */ |
||
| 55 | public function setTemplate(TemplateInterface $template) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return \Symfony\Component\Console\Output\OutputInterface |
||
| 62 | */ |
||
| 63 | public function getOutput() |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @return \Gabrieljmj\Should\Report\Report |
||
| 70 | */ |
||
| 71 | public function getReport() |
||
| 75 | |||
| 76 | /** |
||
| 77 | * @return \Gabrieljmj\Should\Template\TemplateInterface |
||
| 78 | */ |
||
| 79 | public function getTemplate() |
||
| 83 | } |