PHP Classes

File: server/app/Http/Middleware/TrimStrings.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/app/Http/Middleware/TrimStrings.php   Download  
File: server/app/Http/Middleware/TrimStrings.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 368 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Middleware;

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

class
TrimStrings extends Middleware
{
   
/**
     * The names of the attributes that should not be trimmed.
     *
     * @var array
     */
   
protected $except = [
       
'current_password',
       
'password',
       
'password_confirmation',
    ];
}