Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Http/Middleware/TrimStrings.php
10279 views
1
<?php
2
3
namespace Pterodactyl\Http\Middleware;
4
5
use Illuminate\Foundation\Http\Middleware\TrimStrings as BaseTrimmer;
6
7
class TrimStrings extends BaseTrimmer
8
{
9
/**
10
* The names of the attributes that should not be trimmed.
11
*/
12
protected $except = [
13
'password',
14
'password_confirmation',
15
];
16
}
17
18