24 lines
459 B
PHP
24 lines
459 B
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Model template class
|
|
*/
|
|
class Welcome_Model extends MM_Model{
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
} |