PHP Classes

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

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/app/Http/Middleware/EncryptCookies.php   Download  
File: server/app/Http/Middleware/EncryptCookies.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: 294 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Middleware;

use
Illuminate\Cookie\Middleware\EncryptCookies as Middleware;

class
EncryptCookies extends Middleware
{
   
/**
     * The names of the cookies that should not be encrypted.
     *
     * @var array
     */
   
protected $except = [
       
//
   
];
}