| Total Complexity | 5 | 
| Total Lines | 59 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 9 | class FindExecutableDefinitionFilesEvent extends Event | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * @var \ArrayObject | ||
| 13 | */ | ||
| 14 | private $definitionFileCollection; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * @var InputInterface | ||
| 18 | */ | ||
| 19 | private $input; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @var OutputInterface | ||
| 23 | */ | ||
| 24 | private $output; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * @param \ArrayObject $definitionFileCollection | ||
| 28 | * @param InputInterface $input | ||
| 29 | * @param OutputInterface $output | ||
| 30 | */ | ||
| 31 | public function __construct(\ArrayObject $definitionFileCollection, InputInterface $input, OutputInterface $output) | ||
| 36 | } | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @return InputInterface | ||
| 40 | */ | ||
| 41 | public function getInput(): InputInterface | ||
| 42 |     { | ||
| 43 | return $this->input; | ||
| 44 | } | ||
| 45 | |||
| 46 | /** | ||
| 47 | * @return \ArrayObject | ||
| 48 | */ | ||
| 49 | public function getDefinitionFileCollection(): \ArrayObject | ||
| 50 |     { | ||
| 51 | return $this->definitionFileCollection; | ||
| 52 | } | ||
| 53 | |||
| 54 | /** | ||
| 55 | * @param \ArrayObject $definitionFileCollection | ||
| 56 | */ | ||
| 57 | public function replaceDefinitionFileCollection(\ArrayObject $definitionFileCollection) | ||
| 58 |     { | ||
| 59 | $this->definitionFileCollection = $definitionFileCollection; | ||
| 60 | } | ||
| 61 | |||
| 62 | /** | ||
| 63 | * @return OutputInterface | ||
| 64 | */ | ||
| 65 | public function getOutput(): OutputInterface | ||
| 68 | } | ||
| 69 | } |