BookStack/app/Http/Middleware/TrimStrings.php

20 lines
374 B
PHP
Raw Normal View History

2017-09-30 09:31:27 -04:00
<?php
namespace BookStack\Http\Middleware;
2017-11-19 10:56:06 -05:00
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
2017-09-30 09:31:27 -04:00
2017-11-19 10:56:06 -05:00
class TrimStrings extends Middleware
2017-09-30 09:31:27 -04:00
{
/**
* The names of the attributes that should not be trimmed.
*
* @var array
*/
protected $except = [
'password',
'password_confirmation',
'password-confirm',
2017-09-30 09:31:27 -04:00
];
}