Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
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.

33 lines
666 B

3 years ago
3 years ago
3 years ago
  1. <?php
  2. namespace App\Providers;
  3. use App\Events\IngestDocumentReceived;
  4. use App\Listeners\RunSearchAndDisplaceOnDocument;
  5. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  6. class EventServiceProvider extends ServiceProvider
  7. {
  8. /**
  9. * The event listener mappings for the application.
  10. *
  11. * @var array
  12. */
  13. protected $listen = [
  14. IngestDocumentReceived::class => [
  15. RunSearchAndDisplaceOnDocument::class,
  16. ],
  17. ];
  18. /**
  19. * Register any events for your application.
  20. *
  21. * @return void
  22. */
  23. public function boot()
  24. {
  25. parent::boot();
  26. //
  27. }
  28. }