mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-10-31 18:24:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			277 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			277 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Base user model that contains identification information
 | |
|  * about the user
 | |
|  * 
 | |
|  * @author Pierre HUBERT
 | |
|  */
 | |
| 
 | |
| //Need the BaseUniqueObject class
 | |
| require_once __DIR__."/BaseUniqueObject.php";
 | |
| 
 | |
| abstract class BaseUserModel extends BaseUniqueObject {
 | |
| 
 | |
| 	//Nothing yet
 | |
| 
 | |
| } | 
