BookStack/app/Http/Middleware/TrimStrings.php

20 lines
374 B
PHP
Raw Normal View History

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