mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 13:59: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
|
|
|
|
} |