1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-20 21:40:23 +01:00
2021-04-16 03:30:00 +04:30

20 lines
368 B
PHP
Executable File

<?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
*/
protected $except = [
'current_password',
'password',
'password_confirmation',
];
}