server/src/app/Http/Middleware/EncryptCookies.php
changeset 139 8d688175513a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/server/src/app/Http/Middleware/EncryptCookies.php	Fri Mar 04 19:18:28 2016 +0100
@@ -0,0 +1,17 @@
+<?php
+
+namespace CorpusParole\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 = [
+        //
+    ];
+}