| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class ActivateEvent extends Event |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var IOInterface |
||
| 21 | */ |
||
| 22 | private $output; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var Composer |
||
| 26 | */ |
||
| 27 | private $composer; |
||
| 28 | |||
| 29 | public function __construct(Composer $composer, IOInterface $output) |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return IOInterface |
||
| 39 | */ |
||
| 40 | public function getOutput() |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return Composer |
||
| 47 | */ |
||
| 48 | public function getComposer() |
||
| 53 |