Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ValidateSignature.php 460B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Routing\Middleware\ValidateSignature as Middleware;
  4. class ValidateSignature extends Middleware
  5. {
  6. /**
  7. * The names of the query string parameters that should be ignored.
  8. *
  9. * @var array<int, string>
  10. */
  11. protected $except = [
  12. // 'fbclid',
  13. // 'utm_campaign',
  14. // 'utm_content',
  15. // 'utm_medium',
  16. // 'utm_source',
  17. // 'utm_term',
  18. ];
  19. }