| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 44 | { |
||
| 45 | $id = 42; |
||
| 46 | $title = 'Unicorns spotted in Alaska'; |
||
| 47 | $url = 'http://unicorn.com/articles/unicorns-spotted-alaska'; |
||
| 48 | |||
| 49 | $event = new ArticleCreatedEvent($id, $title, $url); |
||
| 50 | |||
| 51 | $this->dispatcher->dispatch('article.created', $event); |
||
| 52 | } |
||
| 53 | } |
||
| 54 |