meta/app/modules/meta/models/user_model.php

35 lines
600 B
PHP
Raw Normal View History

<?php
/**
* meta
*
* Simple hierarchial data management
*
* @package meta
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/meta
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
namespace meta;
/**
* Model for dealing with user logins / permissions
*
* @package meta
*/
class User_model extends \miniMVC\Model {
/**
* Initialize the User model
*/
public function __construct()
{
parent::__construct();
}
}
// End of user_model.php