Unlimited.php 256 B

12345678910111213141516
  1. <?php
  2. namespace Illuminate\Cache\RateLimiting;
  3. class Unlimited extends GlobalLimit
  4. {
  5. /**
  6. * Create a new limit instance.
  7. *
  8. * @return void
  9. */
  10. public function __construct()
  11. {
  12. parent::__construct(PHP_INT_MAX);
  13. }
  14. }