Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
425 B

  1. <?php
  2. namespace App\Listeners;
  3. use Illuminate\Contracts\Queue\ShouldQueue;
  4. use Illuminate\Queue\InteractsWithQueue;
  5. class Test
  6. {
  7. /**
  8. * Create the event listener.
  9. *
  10. * @return void
  11. */
  12. public function __construct()
  13. {
  14. //
  15. }
  16. /**
  17. * Handle the event.
  18. *
  19. * @param object $event
  20. * @return void
  21. */
  22. public function handle($event)
  23. {
  24. //
  25. }
  26. }