miniMVC/modules/welcome/models/welcome_model.php

24 lines
459 B
PHP
Raw Normal View History

<?php
2012-01-11 12:21:52 -05:00
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
* @link https://github.com/timw4mail/miniMVC
* @license http://philsturgeon.co.uk/code/dbad-license
*/
2012-01-11 12:21:52 -05:00
// --------------------------------------------------------------------------
/**
* Model template class
*/
2012-01-10 12:45:04 -05:00
class Welcome_Model extends MM_Model{
2012-01-11 12:21:52 -05:00
function __construct()
{
parent::__construct();
}
}