GITLAB

Warley Eric Rodrigues Rocha / Laravel-LDAP

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • laravel-ldap
  • app
  • Http
  • Middleware
  • EncryptCookies.php
  • 23d29256   first commit Browse Code ยป
    warleyerocha
    2017-02-02 11:41:56 -0200  
EncryptCookies.php 300 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

namespace App\Http\Middleware;

use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;

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