Files
streamline-emr/docker/_streamline-src/app/Http/Middleware/EncryptCookies.php
T

18 lines
307 B
PHP
Executable File

<?php
namespace Streamline\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 = [
//
];
}