DatabaseRefreshed.php 475 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Illuminate\Database\Events;
  3. use Illuminate\Contracts\Database\Events\MigrationEvent as MigrationEventContract;
  4. class DatabaseRefreshed implements MigrationEventContract
  5. {
  6. /**
  7. * Create a new event instance.
  8. *
  9. * @param string|null $database
  10. * @param bool $seeding
  11. * @return void
  12. */
  13. public function __construct(
  14. public ?string $database = null,
  15. public bool $seeding = false
  16. ) {
  17. //
  18. }
  19. }