mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 10:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			267 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			267 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Middleware;
 | 
						|
 | 
						|
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
 | 
						|
 | 
						|
class EncryptCookies extends BaseEncrypter
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The names of the cookies that should not be encrypted.
 | 
						|
     */
 | 
						|
    protected $except = [];
 | 
						|
}
 |