NoPendingMigrations.php 380 B

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