miniMVC/app/modules/welcome/models/welcome_model.php

32 lines
576 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
2012-05-23 12:01:13 -04:00
* @link https://github.com/aviat4ion/miniMVC
2012-07-12 10:23:55 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-01-13 11:58:06 -05:00
*/
// --------------------------------------------------------------------------
/**
* Model template class
*/
2012-05-22 11:11:36 -04:00
class Welcome_Model extends miniMVC\Model{
2012-01-13 11:58:06 -05:00
/**
* Initialize the model
*
* @return void
*/
2012-07-12 10:23:55 -04:00
public function __construct()
2012-01-13 11:58:06 -05:00
{
parent::__construct();
}
2012-05-18 13:52:12 -04:00
}
// End of welcome_model.php