| 1 | <?php |
||
| 7 | class TestListener |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Event[] |
||
| 11 | */ |
||
| 12 | private $events = array(); |
||
| 13 | |||
| 14 | public function before(BeforeExecuteEvent $event) { |
||
| 17 | |||
| 18 | public function after(AfterExecuteEvent $event) { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return \Composer\EventDispatcher\Event[] |
||
| 24 | */ |
||
| 25 | public function getEvents() |
||
| 29 | } |