ListenerInterface.php 111 B

12345678910
  1. <?php
  2. namespace crmeb\interfaces;
  3. interface ListenerInterface
  4. {
  5. public function handle($event): void;
  6. }