PHP Classes

File: app/Http/Middleware/TrimStrings.php

Recommend this page to a friend!
  Classes of Renato Lucena   PHP Pokemon Script   app/Http/Middleware/TrimStrings.php   Download  
File: app/Http/Middleware/TrimStrings.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 342 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Middleware;

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

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