Don’t need these anymore

This commit is contained in:
Lance Pioch 2024-03-19 16:49:09 -04:00
parent 301976e984
commit 9347f776e6
2 changed files with 0 additions and 29 deletions

View File

@ -1,13 +0,0 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
class EncryptCookies extends BaseEncrypter
{
/**
* The names of the cookies that should not be encrypted.
*/
protected $except = [];
}

View File

@ -1,16 +0,0 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as BaseTrimmer;
class TrimStrings extends BaseTrimmer
{
/**
* The names of the attributes that should not be trimmed.
*/
protected $except = [
'password',
'password_confirmation',
];
}