mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Laraspace\Http\Middleware;
 | 
						|
 | 
						|
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
 | 
						|
 | 
						|
class EncryptCookies extends Middleware
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Indicates if cookies should be serialized.
 | 
						|
     *
 | 
						|
     * @var bool
 | 
						|
     */
 | 
						|
    protected static $serialize = false;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The names of the cookies that should not be encrypted.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $except = [
 | 
						|
        //
 | 
						|
    ];
 | 
						|
} |