ModelPruningFinished.php 417 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Illuminate\Database\Events;
  3. class ModelPruningFinished
  4. {
  5. /**
  6. * The class names of the models that were pruned.
  7. *
  8. * @var array<class-string>
  9. */
  10. public $models;
  11. /**
  12. * Create a new event instance.
  13. *
  14. * @param array<class-string> $models
  15. * @return void
  16. */
  17. public function __construct($models)
  18. {
  19. $this->models = $models;
  20. }
  21. }