koel/app/Http/Middleware/TrimStrings.php

19 lines
354 B
PHP
Raw Normal View History

2017-02-14 06:53:02 +00:00
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as BaseTrimmer;
class TrimStrings extends BaseTrimmer
{
/**
2017-02-15 03:19:24 +00:00
* The names of the attributes that should not be trimmed.
*
* @var array<int,string>
2017-02-15 03:19:24 +00:00
*/
2017-02-14 06:53:02 +00:00
protected $except = [
'password',
'password_confirmation',
];
}