miniMVC/modules/welcome/models/welcome_model.php

33 lines
578 B
PHP
Raw Normal View History

2012-01-13 11:58:06 -05:00
<?php
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @package miniMVC
2012-01-13 11:58:06 -05:00
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
* @link https://github.com/timw4mail/miniMVC
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Model template class
*
* @package miniMVC
* @subpackage App
2012-01-13 11:58:06 -05:00
*/
class Welcome_Model extends MM_Model{
/**
* Initialize the model
*
* @return void
*/
2012-01-13 11:58:06 -05:00
function __construct()
{
parent::__construct();
}
}