BookStack/app/Http/Middleware/TrimStrings.php

20 lines
374 B
PHP
Raw Normal View History

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