BatchDispatched.php 295 B

123456789101112131415161718
  1. <?php
  2. namespace Illuminate\Bus\Events;
  3. use Illuminate\Bus\Batch;
  4. class BatchDispatched
  5. {
  6. /**
  7. * Create a new event instance.
  8. *
  9. * @param \Illuminate\Bus\Batch $batch The batch instance.
  10. */
  11. public function __construct(
  12. public Batch $batch,
  13. ) {
  14. }
  15. }