1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-16 19:40:44 +01:00
openstamanager/app/Http/Middleware/TrimStrings.php
Dasc3er 91f4355c36 Introduzione del framework Laravel
Introduzione di Laravel 8 come wrapper per la versione legacy del gestionale, per favorire l'aggiornamento della struttura interna.
2020-12-31 16:17:16 +01:00

19 lines
340 B
PHP

<?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 = [
'password',
'password_confirmation',
];
}