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