| 1 | <?php |
||
| 8 | class StubEventSubscriber implements EventSubscriberInterface |
||
| 9 | { |
||
| 10 | protected $preJobCalled; |
||
| 11 | protected $postJobCalled; |
||
| 12 | |||
| 13 | public function preJob(Event $event) |
||
| 17 | |||
| 18 | public function postJob(Event $event) |
||
| 22 | |||
| 23 | public function getPreJobCalled() |
||
| 27 | |||
| 28 | public function getPostJobCalled() |
||
| 32 | |||
| 33 | public static function getSubscribedEvents() |
||
| 40 | } |
||
| 41 |