mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-10-31 02:04:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			292 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			292 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Account image class
 | |
|  *
 | |
|  * @author Pierre HUBERT
 | |
|  */
 | |
| class accountImage{
 | |
| 	/**
 | |
| 	 * Public constructor
 | |
| 	 */
 | |
| 	public function __construct(){
 | |
| 		//Nothing now
 | |
| 	}
 | |
| 
 | |
| 	public function test(){
 | |
| 		return "test";
 | |
| 	}
 | |
| }
 | |
| 
 | |
| //Register class
 | |
| Components::register("accountImage", new accountImage()); | 
