21 lines
		
	
	
		
			265 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			265 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FML\Script\Sections;
 | |
| 
 | |
| /**
 | |
|  * Script feature using globals
 | |
|  *
 | |
|  * @author steeffeen
 | |
|  */
 | |
| interface Globals {
 | |
| 
 | |
| 	/**
 | |
| 	 * Return array with global variable types with variable names as keys
 | |
| 	 *
 | |
| 	 * @return array
 | |
| 	 */
 | |
| 	public function getGlobals();
 | |
| }
 | |
| 
 | |
| ?>
 |