BatchDispatched.php 411 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Illuminate\Bus\Events;
  3. use Illuminate\Bus\Batch;
  4. class BatchDispatched
  5. {
  6. /**
  7. * The batch instance.
  8. *
  9. * @var \Illuminate\Bus\Batch
  10. */
  11. public $batch;
  12. /**
  13. * Create a new event instance.
  14. *
  15. * @param \Illuminate\Bus\Batch $batch
  16. * @return void
  17. */
  18. public function __construct(Batch $batch)
  19. {
  20. $this->batch = $batch;
  21. }
  22. }