mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 03:07:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			580 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			580 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Middleware;
 | 
						|
 | 
						|
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
 | 
						|
 | 
						|
class EncryptCookies extends Middleware
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The names of the cookies that should not be encrypted.
 | 
						|
     *
 | 
						|
     * @var array<int,string>
 | 
						|
     */
 | 
						|
    protected $except = [
 | 
						|
        //
 | 
						|
    ];
 | 
						|
}
 |