aboutsummaryrefslogtreecommitdiff
path: root/app/Http/Middleware/TrimStrings.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/Middleware/TrimStrings.php')
-rw-r--r--app/Http/Middleware/TrimStrings.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php
deleted file mode 100644
index 88cadca..0000000
--- a/app/Http/Middleware/TrimStrings.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-namespace App\Http\Middleware;
-
-use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
-
-class TrimStrings extends Middleware
-{
- /**
- * The names of the attributes that should not be trimmed.
- *
- * @var array<int, string>
- */
- protected $except = [
- 'current_password',
- 'password',
- 'password_confirmation',
- ];
-}