1.2 - Sketching out the First Test

This commit is contained in:
Adam Wathan
2016-11-01 14:22:29 -04:00
commit e257fdd512
80 changed files with 10725 additions and 0 deletions

View File

@@ -0,0 +1,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 = [
//
];
}