Move Controllers and Middleware folders back to app/Http/ folder

This commit is contained in:
DariusIII
2017-07-30 22:50:33 +02:00
parent 2396cc5963
commit f037412303
10 changed files with 2 additions and 0 deletions
+17
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 = [
//
];
}