1
0
mirror of https://github.com/pierre42100/ComunicAPI synced 2025-04-09 14:50:54 +00:00
2018-04-21 14:48:02 +02:00

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
}