InfluxOW/laravel_ddd_ecommerce

View on GitHub
app/Application/Http/Middleware/TrimStrings.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace App\Application\Http\Middleware;

use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;

final class TrimStrings extends Middleware
{
    /**
     * The names of the attributes that should not be trimmed.
     *
     * @var array<int, string>
     *
     * @phpcsSuppress SlevomatCodingStandard.TypeHints.PropertyTypeHint
     */
    protected $except = [
        'current_password',
        'password',
        'password_confirmation',
    ];
}