38 lines
667 B
PHP
38 lines
667 B
PHP
|
<?php
|
||
|
/**
|
||
|
* MiniMVC
|
||
|
*
|
||
|
* Convention-based micro-framework for PHP
|
||
|
*
|
||
|
* @package miniMVC
|
||
|
* @author Timothy J. Warren
|
||
|
* @copyright Copyright (c) 2011 - 2012
|
||
|
* @link https://github.com/timw4mail/miniMVC
|
||
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
||
|
*/
|
||
|
|
||
|
// --------------------------------------------------------------------------
|
||
|
|
||
|
namespace miniMVC;
|
||
|
|
||
|
/**
|
||
|
* Base Model Class
|
||
|
*
|
||
|
* @package miniMVC
|
||
|
* @subpackage System
|
||
|
*/
|
||
|
class Model extends miniMVC {
|
||
|
|
||
|
/**
|
||
|
* Initialize the model class
|
||
|
*
|
||
|
* @param array $args
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(array $args = [])
|
||
|
{
|
||
|
parent::__construct($args);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// End of model.php
|