sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							38 lines
						
					
					
						
							809 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							38 lines
						
					
					
						
							809 B
						
					
					
				
								<?php
							 | 
						|
								/* ===========================================================================
							 | 
						|
								 * Copyright (c) 2018-2019 Zindex Software
							 | 
						|
								 *
							 | 
						|
								 * Licensed under the MIT License
							 | 
						|
								 * =========================================================================== */
							 | 
						|
								
							 | 
						|
								namespace Opis\Closure;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * Serialize
							 | 
						|
								 *
							 | 
						|
								 * @param $data
							 | 
						|
								 * @return string
							 | 
						|
								 */
							 | 
						|
								function serialize($data)
							 | 
						|
								{
							 | 
						|
								    SerializableClosure::enterContext();
							 | 
						|
								    SerializableClosure::wrapClosures($data);
							 | 
						|
								    $data = \serialize($data);
							 | 
						|
								    SerializableClosure::exitContext();
							 | 
						|
								    return $data;
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * Unserialize
							 | 
						|
								 *
							 | 
						|
								 * @param $data
							 | 
						|
								 * @return mixed
							 | 
						|
								 */
							 | 
						|
								function unserialize($data)
							 | 
						|
								{
							 | 
						|
								    SerializableClosure::enterContext();
							 | 
						|
								    $data = \unserialize($data);
							 | 
						|
								    SerializableClosure::unwrapClosures($data);
							 | 
						|
								    SerializableClosure::exitContext();
							 | 
						|
								    return $data;
							 | 
						|
								}
							 | 
						|
								
							 |