| 1 | <?php |
||
| 7 | abstract class ListenerBuilder |
||
| 8 | { |
||
| 9 | public function build() : Listener |
||
| 21 | |||
| 22 | private function getVerifier() : Verifier |
||
| 28 | |||
| 29 | private function getEventDispatcher() : EventDispatcher |
||
| 33 | |||
| 34 | abstract protected function getMessageFactory() : MessageFactory; |
||
| 35 | |||
| 36 | abstract protected function getService() : Service; |
||
| 37 | } |
||
| 38 |